0.26.0 • Published 3 months ago

@xiangnanscu/lua2js v0.26.0

Weekly downloads
-
License
-
Repository
-
Last release
3 months ago

@xiangnanscu/lua2js

@xiangnanscu/lua2js transform lua to js literally.

Install

npm install -g @xiangnanscu/lua2js

Usage

command

Concat one or more js files and transform them to one lua string:

lua2js [options] file1, file2, ...

where options are:

const defaultOptions = {
  printToConsoleLog: true,
  tryUseOfLoop: true,
  indexMinusOne: true,
  returnNilToThrow: true,
  errorToThrow: true,
  tostring: true,
  dict: true,
  list: true,
  unpack: true,
  tonumber: true,
  class: true,
  selfToThis: true,
  clsToThis: true,
  typeToTypeof: true,
  stringFormat: true,
  tableConcat: true,
  tableInsert: true,
  camelStyle: false,
};

examples

Basic:

lua2js foo.lua > foo.js

To disable a feature --no-[option]:

lua2js --no-camelStyle foo.lua

To enable a feature --[option]:

lua2js --camelStyle foo.lua

api

import { lua2js } from "lua2js";

const jscode = lua2js(`local snake_var = 1`, { camelStyle: true });
// let snakeVar = 1;

see also

@xiangnanscu/js2lua transform js to lua

0.26.0

3 months ago

0.25.0

3 months ago

0.24.0

3 months ago

0.23.0

3 months ago

0.22.0

3 months ago

0.15.0

3 months ago

0.16.0

3 months ago

0.11.0

3 months ago

0.9.0

9 months ago

0.8.0

9 months ago

0.5.0

9 months ago

0.7.0

9 months ago

0.6.0

9 months ago

0.4.0

2 years ago

0.3.0

2 years ago

0.2.0

2 years ago

0.1.0

2 years ago

0.0.1

2 years ago