Skip to content

Latest commit

 

History

1 Commit

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-addon

Make your app modular

Usage

var addon = require('addon');

var app = {};

addon.call(app, __dirname + '/plugins/*.js');

app.hello();

// console output
hello, anonymous

In plugins/hello.js:

module.exports = function helloPlugin() {
  var app = this;
  app.hello = function (name) {
    console.log('hello, ' + name || 'anonymous');
  };
};

About

Make your app modular

Resources

Stars

2 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages