1.0.1 • Published 11 years ago

npm-amd v1.0.1

Weekly downloads
3
License
-
Repository
github
Last release
11 years ago

Node utility intended to bridge npm modules and browser AMD consumers, it browserifies every installed browserifiable npm module and generates a paths hash to be used in a RequireJS configuration or the like.

What it does

It resolves the entry files of the npm modules with browser-resolve to make use of the browser field if present. If the resolved file doesn't have AMD support it bundles it with browserify. Finally it returns a paths object pointing the npm module's id's to the browserified bundle (wrapped in an AMD define), or to the original entry file if it already has AMD support.

It does caching via the bundle filename. The same module version with the same browserify options won't be browserified twice.

API

require("npm-amd")(options, function(err, paths){});

options can be browserify options and force: true, that disables the caching and rebrowserifies everything

Roadmap

  • "exclude" and "only" options to speed up lengthy builds