JSPM

  • Created
  • Published
  • Downloads 63
  • Score
    100M100P100Q7489F
  • License MIT

A javascript to pico-8 lua converter

Package Exports

  • jspicl

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (jspicl) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

jspicl

jspicl is a Javascript to PICO-8 Lua transpiler. It depends on Esprima to generate an AST which is then used to convert the original code into the LUA subset of which PICO-8 supports.

Installation

npm install jspicl --save

Usage

import jspicl from "jspicl";

const javascriptCode = `...`;
const { output, polyfills } = jspicl(javascriptCode);
console.log(
  polyfills,
  output
);

rollup-plugin-jspicl - Rollup plugin wrapper for jspicl

jspicl-mario-sample - Mario sample game using jspicl

Known limitations

ES2015+ Not all ES2015+ features are supported. Run your code through a transpiler first such as bublé or babel.
prototype chains Not supported
Array methods Not all prototype methods have been polyfilled yet.
Math.max Only supports two arguments.
AST Not all declarations, expressions and statements have been implemented. More will be added as needed.

Versioning

This project uses semantic versioning

License

MIT