Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nlepage/go-wasm-http-server

Embed your Go HTTP handlers in a ServiceWorker and emulate an HTTP server!
https://github.com/nlepage/go-wasm-http-server

golang http-server service-worker serviceworker wasm

Last synced: 7 days ago
JSON representation

Embed your Go HTTP handlers in a ServiceWorker and emulate an HTTP server!

Awesome Lists containing this project

README

        

Welcome to go-wasm-http-server 👋




Go Reference


License: Apache 2.0


Twitter: njblepage

> Embed your Go HTTP handlers in a ServiceWorker (using [WebAssembly](https://mdn.io/WebAssembly/)) and emulate an HTTP server!

## Examples

- [Hello example](https://nlepage.github.io/go-wasm-http-server/hello) ([sources](https://github.com/nlepage/go-wasm-http-server/tree/master/docs/hello))
- [Hello example with state](https://nlepage.github.io/go-wasm-http-server/hello-state) ([sources](https://github.com/nlepage/go-wasm-http-server/tree/master/docs/hello-state))
- [Hello example with state and keepalive](https://nlepage.github.io/go-wasm-http-server/hello-state-keepalive) ([sources](https://github.com/nlepage/go-wasm-http-server/tree/master/docs/hello-state-keepalive))
- [😺 Catption generator example](https://nlepage.github.io/catption/wasm) ([sources](https://github.com/nlepage/catption/tree/wasm))
- [Random password generator web server](https://nlepage.github.io/random-password-please/) ([sources](https://github.com/nlepage/random-password-please) forked from [jbarham/random-password-please](https://github.com/jbarham/random-password-please))

## How?

Talk given at the Go devroom of FOSDEM 2021 explaining how `go-wasm-http-server` works:

[![Deploy a Go HTTP server in your browser Youtube link](https://raw.githubusercontent.com/nlepage/go-wasm-http-talk/main/youtube.png)](https://youtu.be/O2RB_8ircdE)

The slides are available [here](https://nlepage.github.io/go-wasm-http-talk/).

## Why?

`go-wasm-http-server` can help you put up a demonstration for a project without actually running a Go HTTP server.

## Requirements

`go-wasm-http-server` requires you to build your Go application to WebAssembly, so you need to make sure your code is compatible:
- no C bindings
- no System dependencies such as file system or network (database server for example)

## Usage

### Step 1: Build to `js/wasm`

In your Go code, replace [`http.ListenAndServe()`](https://pkg.go.dev/net/http#ListenAndServe) (or [`net.Listen()`](https://pkg.go.dev/net#Listen) + [`http.Serve()`](https://pkg.go.dev/net/http#Serve)) by [wasmhttp.Serve()](https://pkg.go.dev/github.com/nlepage/go-wasm-http-server#Serve):

📄 `server.go`
```go
// +build !js,!wasm

package main

import (
"net/http"
)

func main() {
// Define handlers...

http.ListenAndServe(":8080", nil)
}
```

becomes:

📄 `server_js_wasm.go`
```go
// +build js,wasm

package main

import (
wasmhttp "github.com/nlepage/go-wasm-http-server/v2"
)

func main() {
// Define handlers...

wasmhttp.Serve(nil)
}
```

You may want to use build tags as shown above (or file name suffixes) in order to be able to build both to WebAssembly and other targets.

Then build your WebAssembly binary:

```sh
GOOS=js GOARCH=wasm go build -o server.wasm .
```

### Step 2: Create ServiceWorker file

Create a ServiceWorker file with the following code:

📄 `sw.js`
```js
importScripts('https://cdn.jsdelivr.net/gh/golang/[email protected]/misc/wasm/wasm_exec.js')
importScripts('https://cdn.jsdelivr.net/gh/nlepage/[email protected]/sw.js')

registerWasmHTTPListener('path/to/server.wasm')
```

By default the server will deploy at the ServiceWorker's scope root, check [`registerWasmHTTPListener()`'s API](https://github.com/nlepage/go-wasm-http-server#registerwasmhttplistenerwasmurl-options) for more information.

You may want to add these additional event listeners in your ServiceWorker:

```js
// Skip installed stage and jump to activating stage
addEventListener('install', (event) => {
event.waitUntil(skipWaiting())
})

// Start controlling clients as soon as the SW is activated
addEventListener('activate', event => {
event.waitUntil(clients.claim())
})
```

### Step 3: Register the ServiceWorker

In your web page(s), register the ServiceWorker:

```html

// By default the ServiceWorker's scope will be "server/"
navigator.serviceWorker.register('server/sw.js')

```

Now your web page(s) may start fetching from the server:

```js
// The server will receive a request for "/path/to/resource"
fetch('server/path/to/resource').then(res => {
// use response...
})
```

## API

For Go API see [pkg.go.dev/github.com/nlepage/go-wasm-http-server](https://pkg.go.dev/github.com/nlepage/go-wasm-http-server#section-documentation)

### JavaScript API

### `registerWasmHTTPListener(wasmUrl, options)`

Instantiates and runs the WebAssembly module at `wasmUrl`, and registers a fetch listener forwarding requests to the WebAssembly module's server.

⚠ This function must be called only once in a ServiceWorker, if you want to register several servers you must use several ServiceWorkers.

The server will be "deployed" at the root of the ServiceWorker's scope by default, `base` may be used to deploy the server at a subpath of the scope.

See [ServiceWorkerContainer.register()](https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerContainer/register) for more information about the scope of a ServiceWorker.

#### `wasmUrl`

URL string of the WebAssembly module, example: `"path/to/my-module.wasm"`.

#### `options`

An optional object containing:

- `base` (`string`): Base path of the server, relative to the ServiceWorker's scope.
- `args` (`string[]`): Arguments for the WebAssembly module.

## Author

👤 **Nicolas Lepage**

* Website: https://nicolas.lepage.dev/
* Twitter: [@njblepage](https://twitter.com/njblepage)
* Github: [@nlepage](https://github.com/nlepage)

## 🤝 Contributing

Contributions, issues and feature requests are welcome!
Feel free to check [issues page](https://github.com/nlepage/go-wasm-http-server/issues).

## Show your support

Give a ⭐️ if this project helped you!

## 📝 License

Copyright © 2021 [Nicolas Lepage](https://github.com/nlepage).

This project is [Apache 2.0](https://github.com/nlepage/go-wasm-http-server/blob/master/LICENSE) licensed.

***
_This README was generated with ❤️ by [readme-md-generator](https://github.com/kefranabg/readme-md-generator)_