Original code is located at master branch
sudo apt-get install -y build-essential gcc-multilibcd {/YOUR/PATH/TO/}QuickJSmakesudo make install# to use qjs and qjsc outside of repo folder
modbranch contained mac fixes for undefinedenvironin./quickjs-libc.c- update xcode
makesudo make install# to use qjs and qjsc outside of repo folder
create a hello_world1.js javascript file
console.log('Hello World')goto command line and type
> ./qjsc -o hello_world1 ./hello_world1.js
> ./hello_world1
> Hello Worldcreate a hello_world2.js javascript file
import * as std from 'std'
console.log(std.getenv('msg'))goto command line and type
> ./qjsc -o hello_world2 ./hello_world2.js
> SyntaxError: unsupported keyword: import
> ./qjsc -m -o hello_world2 ./hello_world2.js
> msg="Hello World w Import" ./hello_world2
> Hello World w Import- doesn't support Blob
- doesn't support WebWorker
- exceptions in promise are silent. use
./qjs --unhandled-rejection {script.js}to display exceptions - doesn't handle
Maximum call stack size exceededfor recursive async function correctly. it crashes with segmentation error
- compiled executable of
qjscdoes not has speed advantage compared with interpreting script withqjs
test it yourself
# run benchmark with interpretor
./qjs tests/microbench.js
# run benchmark with compiler
./qjsc -o microbench tests/microbench.js
./microbench