Skip to content

An NPM multi-package project that holds an interactive coding environment for JavaScript (and Typescript), resembling Jupyter Notebook. Written in Typescript, using React.js and Redux on the client-side, and Node.js and express on the server-side. Code transpiling+bundling is performed directly in the browser using ESBuild, via Web Assembly , an…

Notifications You must be signed in to change notification settings

ateliereven/notebook-js-ts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Notebook JS/TS

An NPM multi-package project that holds an interactive coding environment for JavaScript (and Typescript), resembling Jupyter Notebook. Written in Typescript, using React.js and Redux on the client-side, and Node.js and express on the server-side. The app allows the user to create code or text snippets, execute code and view the output in a preview window. Code transpiling+bundling is performed directly in the browser using ESBuild, via Web Assembly, and all changes are saved to a local file. Package management and deployment are handled with Lerna CLI.

Download from the npm registry

Alt text

Available CLI Commands:

start notebook-js-ts server with npx:

npx notebook-js-ts serve

A mynotes.js file is created by default under the root directory, saving your changes. Navigate to http://localhost:4005 to view it in the browser.

When installed globaly, these commands are available on the terminal:

notebook-js-ts serve

Serving a specific file (optional):

notebook-js-ts serve <file-name>

Serving file on a specific port (4045 is the default):

notebook-js-ts serve --port <port-number>

or:

notebook-js-ts serve -p <port-number>

Using Notebook JS/TS:

  • Two types of cells are available for your use - text cells and code cells.
  • Click inside a text cell to edit it via markdown syntax.
  • Code cells accept code written in js/ts/jsx/tsx. Switch between JS and TS by selecting language on the top left corner (JS is defualt).
  • Use the built-in show() function to view the code output in the preview pane.
  • You may import libraries and execute React.js components.
  • Each code cell has the option to auto-format or clear cell content.
  • Comulutive bundling is enabled between successive code cells.
  • Re-order, duplicate, copy content or delete cells using the buttons on the top right.
  • Add new cells by clicking the +code / +text buttons.

About

An NPM multi-package project that holds an interactive coding environment for JavaScript (and Typescript), resembling Jupyter Notebook. Written in Typescript, using React.js and Redux on the client-side, and Node.js and express on the server-side. Code transpiling+bundling is performed directly in the browser using ESBuild, via Web Assembly , an…

Topics

Resources

Stars

Watchers

Forks