lune-packaging/package/js
2024-06-19 18:09:31 +05:30
..
bin feat(packages): include js wrapper installer package 2024-06-19 18:09:30 +05:30
.gitignore feat(packages): include js wrapper installer package 2024-06-19 18:09:30 +05:30
build.ts feat(packages): include js wrapper installer package 2024-06-19 18:09:30 +05:30
consts.toml feat(packages): include js wrapper installer package 2024-06-19 18:09:30 +05:30
consts.ts feat(packages): include js wrapper installer package 2024-06-19 18:09:30 +05:30
deno.json feat(packages): include js wrapper installer package 2024-06-19 18:09:30 +05:30
deno.lock feat(packages): include js wrapper installer package 2024-06-19 18:09:30 +05:30
github.ts feat(packages): include js wrapper installer package 2024-06-19 18:09:30 +05:30
install.ts feat(packages): include js wrapper installer package 2024-06-19 18:09:30 +05:30
LICENSE.md feat(packages): include js wrapper installer package 2024-06-19 18:09:30 +05:30
README.md feat(js): add README 2024-06-19 18:09:31 +05:30

Deno/Node Packages

This package exports lune, the standalone luau runtime as a JS package to be used as a dependency in a JS project.

To install the package, run one of the following in your project, substituting {VERSION} with the version of lune you want to install:

# Install from NPM for node
npm install lune@{VERSION}

# Install for Deno
deno install https://raw.githubusercontent.com/CompeyDev/lune-packaging/v{VERSION}/package/js/bin/lune.ts

Note

: Only lune versions starting from lune v0.8.5 are supported for NPM. Pinned deno versions are currently not supported, so you would need to omit the version portion from the script link.