Skip to content

Commit

Permalink
add normal HTTP handler for debugging purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
syumai committed May 2, 2024
1 parent 67461c4 commit f00717f
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
4 changes: 3 additions & 1 deletion handler.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build js && wasm

package workers

import (
Expand Down Expand Up @@ -85,7 +87,7 @@ func handleRequest(reqObj js.Value) (js.Value, error) {
//go:wasmimport workers ready
func ready()

// Server serves http.Handler on Cloudflare Workers.
// Server serves http.Handler on a JS runtime.
// if the given handler is nil, http.DefaultServeMux will be used.
func Serve(handler http.Handler) {
if handler == nil {
Expand Down
27 changes: 27 additions & 0 deletions handler_without_js.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
//go:build !js

package workers

import (
"fmt"
"net/http"
"os"
)

// Server serves http.Handler as a normal HTTP server.
// if the given handler is nil, http.DefaultServeMux will be used.
// As a port number, PORT environment variable or default value (9900) is used.
// This function is implemented for non-JS environments for debugging purposes.
func Serve(handler http.Handler) {
if handler == nil {
handler = http.DefaultServeMux
}
port := os.Getenv("PORT")
if port == "" {
port = "9900"
}
addr := fmt.Sprintf(":%s", port)
fmt.Printf("listening on: http://localhost%s\n", addr)
fmt.Fprintln(os.Stderr, "warn: this server is currently running in non-JS mode. to enable JS-related features, please use the make command in the syumai/workers template.")
http.ListenAndServe(addr, handler)
}

0 comments on commit f00717f

Please sign in to comment.