gwendall/way.js

Publish to Bower, NPM, and CDNJS

Opened this issue · 4 comments

Please publish this library to Bower, NPM, and CDNJS.

(Might be a good idea to take care of #16 before this issue)

Indeed! Published to Bower:

bower install way.js

@gwendall Thanks. It would be great to put this information in README.md as well

@gwendall Would you also consider making it available with bower install way? Usually, projects with their name ending with .js drop the suffix when they publish to Bower and NPM.

AMD:

define(['way'], function (way) { ... });

CommonJS:

var way = require('way');

Is there any chance this module could be published to NPM? I would love to install it via npm and use it client side with browserify using npm.

Thanks!