Add an example of namespaced APIs

By creating wasm modules from Rust!
This commit is contained in:
Alex Crichton
2018-03-22 17:39:48 -07:00
parent 8830f540a9
commit 4716752991
12 changed files with 137 additions and 0 deletions

View File

@ -0,0 +1,10 @@
const path = require('path');
module.exports = {
entry: "./index.js",
output: {
path: path.resolve(__dirname, "dist"),
filename: "index.js",
},
mode: "development"
};