gopherjs-loader
v0.0.1
Published
GopherJS loader module for webpack
Downloads
2,202
Readme
GopherJS Webpack loader
Usage
This is a simple Webpack loader that shells out to gopherjs.
To use it, first install the package:
$ npm install --save gopherjs-loader
then configure the loader in your Webpack config:
module.exports = {
// ...
module: {
rules: [
{ test: /\.go$/, loader: 'gopherjs-loader' },
// ...
]
}
}
Make sure you have the gopherjs
binary somewhere in your PATH
.
Example
Check out the example directory for a simple Hello World example.