1.0.4 • Published 9 years ago

lesson-launcher v1.0.4

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

lesson-launcher

experimental

screen

An interactive terminal to browse and launch JavaScript files in a particular environment. By default, uses node for all scripts, but this can be overridden to run es6 files or launch a browser for DOM/WebGL examples.

Currently only works with a single depth in folder structure, which typically looks like this:

lessons
    streams
        01.js
        02.js
        README.md
    foobar
        01.js
        foo.js
        README.md
    dom
        01.js
        README.md

See test.js for example. Note that this module is highly experimental and subject to change.

The basic setup looks like this:

var run = require('lesson-launcher')

run('lessons', {
    //to filter filenames that are shown
    accept: function(file) {
        return /^[0-9]+/.test(f)
    }
})

License

MIT, see LICENSE.md for details.