This is a kernel for Jupyter
Get it while it's hot! or view the example notebook
git clone https://github.com/notablemind/jupyter-nodejs.git
cd jupyter-nodejs
mkdir -p ~/.ipython/kernels/nodejs/
npm install && node install.js
npm run build
npm run build-ext
jupyter console --kernel nodejs
And viola!
Also, in the iPython notebook:
package/config.js
node install.js [install-dir]
will install the kernel.json
file that ipython looks for. The default is for linux machines, ~/.ipython/kernels/nodejs/
. You will have to specify an install dir for Mac and Windows (see the docs for info about what that should be)
%load_ext babel
and then
%%babel
class Awesome {
constructor() {
console.log('yeah!')
}
}
Hovever: import ...
syntax doesn't work because of live bindings foo, so just use require()
normally and all will be well.
%load_ext clojurescript http://himera-emh.herokuapp.com
and then
%%clojurescript
(clojurey goodness)