1.0.0 • Published 9 years ago

knots v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

Knots

Tests Status

Example

const Knots = require('knots');
const knots = new Knots();

knots.tie('base', () => [require('./partials/header.js'), require('./partials/footer.js']);
knots.tie('page:contact', () => [require('./pages/contact.js')]);

knots.run(['base']);

header.js

module.exports = function HeaderPartial() {
    // stuff

    return () => {
        // onload
    }
}