Skip to content
forked from pcmacdon/jsish

Jsi is a small, C-embeddable javascript interpreter with tightly woven Web and DB support.

License

Notifications You must be signed in to change notification settings

paintedveil5/jsish

 
 

Repository files navigation

Jsi is a javascript-ish interpreter with builtin websocket-server, sqlite and C-extensibility.

Home | Docs

Start

Get source and build '''make'''.

Or download a binary: https://github.com/pcmacdon/jsibin/

🚩 See Start.

Usage

./jsish -W -docs /          # Jsi web-docs.
./jsish -S mysqlite.db      # Sqlite web-gui.

Compile and run a simple C-extension.

./jsish -c -jsc "function add(n1:number, n2:number=1):number { n1+=n2; \nRETURN(n1);\n }" Sum 
./jsish -e 'require("Sum",0); return Sum.add(9,3);'

About

Jsi is a small, C-embeddable javascript interpreter with tightly woven Web and DB support.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 77.6%
  • JavaScript 17.2%
  • Yacc 2.3%
  • CSS 1.3%
  • Makefile 0.7%
  • HTML 0.6%
  • Shell 0.3%