steal-lavascript

0.2.2 • Public • Published

StealJS plugin for Literate JavaScript

Installation

$ npm install --save steal-lavascript

LavaScript is peer dependency and must be installed seperately.

$ npm install --save-dev lavascript

Use

To use this plugin load a js.md file with the bang syntax.

const otherFile = require('./otherFile.js.md!lavascript')
import otherFile from './otherFile.js.md!lavascript'

If you wanted to associate all .js.md files with the steal-lavascript plugin, you could specify it as a handler using the ext property in your steal configuration.

"steal": {
  "ext": {
    "js.md": "lavascript"
  }
}

With the above configuration, you can import a lavascript file as you would any other file.

const otherFile = require('./otherFile.js.md')
import otherFile from './otherFile.js.md'

Related

LavaScript - Literate Programming for JavaScript

/steal-lavascript/

    Package Sidebar

    Install

    npm i steal-lavascript

    Weekly Downloads

    1

    Version

    0.2.2

    License

    MIT

    Unpacked Size

    2.9 kB

    Total Files

    4

    Last publish

    Collaborators

    • mjstahl