jstransformers / jstransformer

Normalize the API of any JSTransformer.
http://npm.im/jstransformer
MIT License
153 stars 12 forks source link
asynchronously consolidate engine javascript jstransformer promise templates transform unified

JSTransformer

Normalize the API of any jstransformer

Build Status Dependency Status Developers' Dependency Status Coverage Status NPM version

There are many good template engines and compilers written for Node.js. But there is a problem: all of them have slightly different APIs, requiring slightly different usage. JSTransformer unifies them into one standardized API. Code written for one transformer will work with any other transformer. There are over 100 transformers, ranging from Markdown parsers to template engines to code compilers.

Installation

npm install jstransformer

Usage

var transformer = require('jstransformer');
var marked = transformer(require('jstransformer-marked'));

var options = {};
var res = marked.render('Some **markdown**', options);
// => {body: 'Some <strong>markdown</strong>', dependencies: []}

This gives the same API regardless of the jstransformer passed in.

API

A transformer, once normalised using this module, will implement the following methods. Note that if the underlying transformer cannot be used to implement the functionality, it may ultimately just throw an error.

.render*

Returned object from .render*

{body: String, dependencies: Array.<String>}

.render

transformer.render(str, options, locals);
=> {body: String, dependencies: Array.<String>}

requires the underlying transform to implement .render or .compile

Transform a string and return an object.

.renderAsync

transformer.renderAsync(str[, options], locals, callback);
transformer.renderAsync(str[, options], locals);
=> Promise({body: String, dependencies: Array.<String>})

requires the underlying transform to implement .renderAsync, .render, .compile, or .compileAsync

Transform a string asynchronously. If a callback is provided, it is called as callback(err, data), otherwise a Promise is returned.

.renderFile

transformer.renderFile(filename, options, locals)
=> {body: String, dependencies: Array.<String>}

requires the underlying transform to implement .renderFile, .render, .compileFile, or .compile

Transform a file and return an object.

.renderFileAsync

transformer.renderFileAsync(filename[, options], locals, callback);
transformer.renderFileAsync(filename[, options], locals);
=> Promise({body: String, dependencies: Array.<String>})

requires the underlying transform to implement .renderFileAsync, .renderFile, .renderAsync, .render, .compileFileAsync, .compileFile, .compileAsync, or .compile

Transform a file asynchronously. If a callback is provided, it is called as callback(err, data), otherwise a Promise is returned.

.compile*

Returned object from .compile*

{fn: Function, dependencies: Array.<String>}

.compile

transformer.compile(str[, options]);
=> {fn: Function, dependencies: Array.<String>}

requires the underlying transform to implement .compile or .render

Compile a string and return an object.

.compileAsync

transformer.compileAsync(str[, options], callback);
transformer.compileAsync(str[, options]);
=> Promise({fn: Function, dependencies: Array.<String>})

requires the underlying transform to implement .compileAsync, .compile or .render

Compile a string asynchronously. If a callback is provided, it is called as callback(err, data), otherwise a Promise is returned.

.compileFile

transformer.compileFile(filename[, options])
=> {fn: Function, dependencies: Array.<String>}

requires the underlying transform to implement .compileFile, .compile, .renderFile, or .render

Compile a file and return an object.

.compileFileAsync

transformer.compileFileAsync(filename[, options], callback);
transformer.compileFileAsync(filename[, options]);
=> Promise({fn: Function, dependencies: Array.<String>})

requires the underlying transform to implement .compileFileAsync, .compileFile, .compileAsync, .compile, .renderFileAsync, .renderFile, or .render

Compile a file asynchronously. If a callback is provided, it is called as callback(err, data), otherwise a Promise is returned.

.compileClient*

Returned object from .compileClient*

{body: String, dependencies: Array.<String>}

.compileClient

transformer.compileClient(str[, options]);
=> {body: String, dependencies: Array.<String>}

requires the underlying transform to implement .compileClient

Compile a string for client-side use and return an object.

.compileClientAsync

transformer.compileClientAsync(str[, options], callback);
transformer.compileClientAsync(str[, options]);
=> Promise({body: String, dependencies: Array.<String>})

requires the underlying transform to implement .compileClientAsync or .compileClient

Compile a string for client-side use asynchronously. If a callback is provided, it is called as callback(err, data), otherwise a Promise is returned.

.compileFileClient

transformer.compileFileClient(filename[, options])
=> {body: String, dependencies: Array.<String>}

requires the underlying transform to implement .compileFileClient or .compileClient

Compile a file for client-side use and return an object.

.compileFileClientAsync

transformer.compileFileClientAsync(filename[, options], callback);
transformer.compileFileClientAsync(filename[, options]);
=> Promise({body: String, dependencies: Array.<String>})

requires the underlying transform to implement .compileFileClientAsync, .compileFileClient, .compileClientAsync, or .compileClient

Compile a file for client-side use asynchronously. If a callback is provided, it is called as callback(err, data), otherwise a Promise is returned.

.inputFormats

var formats = transformer.inputFormats;
=> ['md', 'markdown']

Returns an array of strings representing potential input formats for the transform. If not provided directly by the transform, results in an array containing the name of the transform.

.outputFormat

var md = require('jstransformer')(require('jstransformer-markdown'))
var outputFormat = md.outputFormat
=> 'html'

Returns a string representing the default output format the transform would be expected to return when calling .render().

.can

var md = require('jstransformer')(require('jstransformer-markdown'))
md.can('render');
=> true

Takes a method name as a string and returns a boolean value indicating whether the normalised transform implements this method.

License

MIT