1.0.0 • Published 5 years ago

runify v1.0.0

Weekly downloads
1
License
MIT
Repository
-
Last release
5 years ago

Runify

Runs browserify plugins and returns a Promise resolving with the generated source code.

npm install runify

Usage

const runify = require('runify');
const combynify = require('combynify');

const source = `
  Hello world, from Combyne template
`;

async function main() {
  const source = await runify(source, combynify, 'index.html', {});
}

main();
1.0.0

5 years ago