Wasmoon
This package aims to provide a way to:
- Embed Lua to any Node.js, Deno or Web Application.
- Run lua code in any operational system
Installation
Globally via npm
$: npm install -g wasmoon
This will install wasmoon
globally so that it may be run from the command line anywhere.
Running on-demand:
Using npx
you can run the CLI without installing it first, its very simple to open the interactive wasmoon:
$: npx wasmoon
API Usage
To initialize, create a new Lua state, register the standard library, set a global variable, execute a code and get a global variable:
const { LuaFactory } = require('wasmoon')
const factory = new LuaFactory()
const lua = await factory.createEngine()
try {
lua.global.set('sum', (x, y) => x + y)
await lua.doString(`
print(sum(10, 10))
function multiply(x, y)
return x * y
end
`)
const multiply = lua.global.get('multiply')
console.log(multiply(10, 10))
} finally {
lua.global.close()
}
CLI Usage
Although Wasmoon has been designed to be embedded, you can run it on command line as well, but, if you want something more robust on this, we recommend to take a look at demoon.
$: wasmoon [options] [file] [args]
Available options are:
-l
: Include a file or directory-i
: Enter interactive mode after running the files
Example:
$: wasmoon -i sum.lua 10 30
And if you are in Unix, you can also use it as a script interpreter with Shebang:
#!/usr/bin/env wasmoon
return arg[1] + arg[2]
$: ./sum.lua 10 30
Fixing common errors on web environment
Bundle/require errors can happen because wasmoon tries to safely import some node modules even in a browser environment, the bundler is not prepared to that since it tries to statically resolve everything on build time.
Polyfilling these modules is not the right solution because they are not actually being used, you just have to ignore them:
Webpack
Add the resolve.fallback
snippet to your config:
module.exports = {
entry: './src/index.js',
resolve: {
fallback: {
path: false,
fs: false,
child_process: false,
crypto: false,
url: false,
},
},
}
Rollup
With the package rollup-plugin-ignore, add this snippet to your config:
export default {
input: 'src/index.js',
plugins: [ignore(['path', 'fs', 'child_process', 'crypto', 'url'])],
}
Angular
Add the section browser on package.json
:
{
"main": "src/index.js",
"browser": {
"child_process": false,
"fs": false,
"path": false,
"crypto": false,
"url": false
}
}