Skip to content

kevinburke/javascript-ipython

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

running a javascript notebook

like ipython, but it runs javascript!

steps:

  • run "make install"
  • run "make serve" to start the server

you can do some more around configuration to set the ipython notebook directory to something with your node_modules folder (so the dependencies load correctly...) right now this is hard coded to my folder.

Async

Put this at the top of the notebook

$$async$$ = true;

Then stop execution by calling $$done$$(). Example:

$$async$$ = true;
setTimeout(function() {
    $$done$$();
}, 1);

About

ipython notebook for javascript

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published