Skip to content
/ argnote Public

Interactive Coding Environment for JavaScript. (Like Jupyter Notebook but for JavaScript)

Notifications You must be signed in to change notification settings

argahv/argnote

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

argnote

This is an interactive coding environment. You can write Javascript, see it executed, and write comprehensive documentation using markdown.

Getting Started

To run this project run you can use npx

  npx argnote serve

or install globally

  npm install --g argnote

and then run locally with

  argnote serve

by which a default notebook file of notebook.js will be created and the default running port will be 4005.

You can change the file/directory and running port with

  argnote serve notebooks/test.js -p 5000

by which the file test.js will be created into the directory notebooks. You will see your codes there.

To run the same file in the local server simply use the directory/filename you used.

Tech Stack

Client: React and Redux with TypeScript

Server: Node, Express

The whole project has been created with React 17 and written in TypeScript.

You can write codes in JavaScript and import any packages from npm.

VS Code users will feel at-home as the same code editor can be used to write the codes. The written codes will be compiled in real time as you code with a very high performance.

ESBuild WASM (web assembly) is used to bundle and transpile the codes directly into the browser. This is a task normally done by running Webpack and Babel at the terminal. The users' code is complied safely in the browser just like how famous services like CodeSandBox and CodePen do.The project is deployed using a multi-package architecture (Lerna) into NPM.

Commander is used to create the CLI commands for serving the project.

Badges

MIT License GPLv3 License AGPL License

Contributing

Contributions are always welcome!

About

Interactive Coding Environment for JavaScript. (Like Jupyter Notebook but for JavaScript)

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published