codememo v1.1.0
CodeMemo
An interactive coding environment. You can write Javascript, import any NPM modules and see it executed, and write comprehensive documentation using markdown
Implemented
Edit
Textcells by clicking on their contentsThe code in each
Codecell is bundled into one file. Variables defined in any cell can be referenced in othersIt is possible to render React components, strings, numbers, or anything else by calling the built-in
show()function.Re-ordering or deleting cells AppBar on each cell
Add new cells by hovering on the divider between cells
All changes are saved to the file you opened CodeMemo with. For example, if your start CodeMemo with
npx codememo serve demo.jscommand, all contents from the text and code cells will be saved todemo.jsfile in the same directory where the command was executed
Install
~ npm install [-g] codememo@latestUsage
~ npx codememo serve [filename/path-to-file] [--port=<number>]--portby default is set to8080--filenameis set tocodememo.js. Used to store code & text snippets
Example
~ npx -y codememo@latest serve
Listening on http://localhost:8080, where demo.js is used to store our memos.
