1.0.2 • Published 3 years ago

jspad v1.0.2

Weekly downloads
5
License
ISC
Repository
-
Last release
3 years ago

JSPad

An in-browser JavaScript and Markdown editor. Contains support for dynamically importing most libraries from NPM. Uses a CLI and local node server to allow for data persistence.

Libraries used

  • React
  • Redux
  • TypeScript
  • Bulma
  • Express

Install the CLI

Install globally using

$ npm install -g jspad

Start the development server

Using global install

$ jspad serve

or using npx (no install required)

$ npx jspad serve

Default port is 4005

CLI options

CommandDescriptionDefault
--port or -pPort to run server on4005
[filename]File to opennotebook.js

Examples

  1. Open new file on default port: $ jspad serve

  2. Open existing file example.js on port 8000: $ jspad serve example.js --port 8000

  3. Open existing file in a different directory: $ jspad serve ../test/example.js


Thanks to Stephen Grider for the fantastic course

@ste_grider