Require javascript files with webant
There should be no need to install this module since it's required by the webant module by default.
If for some reason you'd like to use the module outside of webant, install as follows:
$ npm install webant-handler-js
Ensure the js
handler is present in your webant configuration file. For example:
{
"entry":"src/js/main.js",
"dest":"build/main.js",
"handlers":{
"js":{}
}
}
You may now require
javascript files:
var foo = require("../lib/foo.js");
foo.sayHello();
$ npm test