npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

jstransformer-toffee

0.6.0

@robloach

npmHomeRepoSnykSocket
Downloads:23
$ npm install jstransformer-toffee
DailyWeeklyMonthlyYearly

jstransformer-toffee

Toffee support for JSTransformers.

Build Status Coverage Status Dependency Status Greenkeeper badge NPM version

Installation

npm install jstransformer-toffee

API

var toffee = require('jstransformer')(require('jstransformer-toffee'));
var opts = {};

toffee.render('<h1>Hello #{place}!</h1>', opts, {place: 'world'}).body;
//=> '<h1>Hello world!</h1>'


var promise = toffee.renderFileAsync('./path/to/hello.toffee', opts, {place: 'world'});
promise.then(function(data) {
  console.log(data.body);
  //=> '<h1>Hello world!</h1>'
});

License

MIT