runify
v1.0.0
Published
Runs browserify plugins and returns a Promise resolving with the generated source code.
Downloads
2
Readme
Runify
Runs browserify plugins and returns a Promise resolving with the generated source code.
npm install runifyUsage
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();