backtick

0.3.2 • Public • Published

Build Status codecov

backtick

template literal based template engine.

Install

$ npm install backtick

Usage

// template.txt
Fifteen is ${a + b} and
not ${2 * a + b}.

or

`Fifteen is ${a + b} and
not ${2 * a + b}.`
// example
const backtick = require('backtick');
 
backtick(`template.txt`, 'dist', {
  a: 5,
  b: 10
});
// dist/template.txt
Fifteen is 15 and
not 20.

License

MIT © mkwtys

/backtick/

    Package Sidebar

    Install

    npm i backtick

    Weekly Downloads

    16

    Version

    0.3.2

    License

    MIT

    Last publish

    Collaborators

    • mkwtys