BashNotebook
extends Nodebook
Usage
Setup
const Nodebook = require('nodejs-notebook');
const main = new Nodebook.BashNotebook('main');main.note('echo Hi!');
// Adds 'echo Hi!'main.runFile();
// Should output "Hi!"Last updated
extends Nodebook
const Nodebook = require('nodejs-notebook');
const main = new Nodebook.BashNotebook('main');main.note('echo Hi!');
// Adds 'echo Hi!'main.runFile();
// Should output "Hi!"Last updated
main.runCMD('git status');
// Runs 'git status'