Home

Awesome

ZeroBraneStudioLJS

Port of ZeroBraneStudio from lua to ljs

Here is the conversion so far of ZeroBraneStudio from Lua to LJS https://github.com/mingodad/ljs .

The process was (there is a ljs script to automate it check-diff.ljs):

for fn in *.lua; do lua2ljs $fn > ${fn/\.lua/\.ljs}; rm $fn; done 
ljsc -p -l -l fname_ljs > /dev/null 
for fn in *.ljs; do ln -s $fn ${fn/\.ljs/\.lua}
(cd "$DIR"; bin/linux/$ARCH/ljs src/main.ljs zbstudio -cwd "$CWD" "$@") #&