mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-29 08:21:07 +00:00
Right now Webpack probably has the most mature support for loading wasm modules, so let's show off how to do that! Additionally this commits hello world as an example to the repository.
11 lines
175 B
JSON
11 lines
175 B
JSON
{
|
|
"scripts": {
|
|
"serve": "webpack-dev-server"
|
|
},
|
|
"devDependencies": {
|
|
"webpack": "^4.0.1",
|
|
"webpack-cli": "^2.0.10",
|
|
"webpack-dev-server": "^3.1.0"
|
|
}
|
|
}
|