Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hajimehoshi/wasmserve
An HTTP server for testing Wasm
https://github.com/hajimehoshi/wasmserve
Last synced: 12 days ago
JSON representation
An HTTP server for testing Wasm
- Host: GitHub
- URL: https://github.com/hajimehoshi/wasmserve
- Owner: hajimehoshi
- License: apache-2.0
- Created: 2018-07-06T19:02:51.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-09-01T08:43:22.000Z (2 months ago)
- Last Synced: 2024-10-10T17:24:15.844Z (about 1 month ago)
- Language: Go
- Homepage:
- Size: 35.2 KB
- Stars: 248
- Watchers: 7
- Forks: 26
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-list - wasmserve
README
# WasmServe
An HTTP server to test GOOS=js/GOARCH=wasm
## Sponsors
WasmServe is sponsored by [SourceGraph](https://sourcegraph.com/).
## Installation
```sh
go install github.com/hajimehoshi/wasmserve@latest
```## Usage
```
Usage of wasmserve
-allow-origin string
Allow specified origin (or * for all origins) to make requests to this server
-http string
HTTP bind address to serve (default ":8080")
-overlay string
Overwrite source files with a JSON file (see https://pkg.go.dev/cmd/go for more details)
-tags string
Build tags
```## Trigger Refresh
Once the browser loads the page, you can trigger a reload by making a call to teh server at `/_notify`, like this:
```sh
curl localhost:8080/_notify
```This will make the browser reload. You can add this command to a build script or to an IDE command, to have the browser automatically update without leaving your IDE.
## Example
Running a remote package
```sh
wasmserve github.com/hajimehoshi/wasmserve/example
```And open `http://localhost:8080/` on your browser.
## Example 2
Running a local package
```sh
git clone https://github.com/hajimehoshi/ebiten # This might take several minutes.
cd ebiten
wasmserve ./examples/sprites
```And open `http://localhost:8080/` on your browser.
## Known issue with Windows Subsystem for Linux (WSL)
This application sometimes does not work under WSL, due to bugs in WSL, see https://github.com/hajimehoshi/wasmserve/issues/5 for details.
## Tips
* If you want to change the working directory to serve, you can use cd with parentheses:
```
(cd /path/to/working/dir; wasmserve github.com/yourname/yourpackage)
```* To trigger a browser reload from a script, make a call to `/_notify`, like this:
```sh
curl http://localhost:8080/_notify
```
This will make the browser refresh the page.