wasmoon
A real lua 5.4 VM with JS bindings made with webassembly
File Explorer
- publish.yml
- test.yml
- FUNDING.yml
- launch.json
- settings.json
- comparisons.js
- heapsort.lua
- steps.js
- wasmoon
- error.ts
- function.ts
- null.ts
- promise.ts
- proxy.ts
- table.ts
- userdata.ts
- declarations.d.ts
- decoration.ts
- engine.ts
- factory.ts
- global.ts
- index.ts
- luawasm.ts
- multireturn.ts
- pointer.ts
- raw-result.ts
- thread.ts
- type-extension.ts
- types.ts
- utils.ts
- boot.js
- debug.js
- engine.test.js
- filesystem.test.js
- initialization.test.js
- luatests.js
- promises.test.js
- utils.js
- create-bindings.js
- create-bindings.sh
- .gitignore
- .gitmodules
- .prettierignore
- .prettierrc
- build.sh
- eslint.config.js
- LICENSE
- lua
- package-lock.json
- package.json
- README.md
- rolldown.config.ts
- tsconfig.json
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git submodule
View Details ▼
git submodule
Inspect, update, and manage submodules.
git submodule
View existing submodules and the checked-out commit for each one:
git submodule update --init --recursive
Install a repository's submodules (listed in `.gitmodules`):
git submodule add {{repository_url}}
Add a Git repository as a submodule of the current one:
npm run
View Details ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
npm test
View Details ▼
npm test
This command is an alias of `npm run test`.
tldr npm run
View documentation for the original command:
npm
View Details ▼
npm
JavaScript and Node.js package manager.
Manage Node.js projects and their module dependencies.
Some subcommands such as `install`, `run`, etc. have their own usage documentation.
npm init {{[-y|--yes]}}
Create a `package.json` file with default values (omit `--yes` to do it interactively):
npm {{[i|install]}}
Download all the packages listed as dependencies in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
