jstransformer-toffee

0.6.0 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i jstransformer-toffee

Weekly Downloads

0

Version

0.6.0

License

MIT

Last publish

Collaborators

  • stoeffel
  • schtoeffel
  • hemanth
  • timothygu
  • calebeby
  • vanchoy
  • tunnckocore