Skip to content

Experience-Monks/lesson-launcher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

launches an interactive terminal for JavaScript lessons/examples

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published