New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

build-modules

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

build-modules

`build-modules` ============

  • 2.0.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
13
decreased by-18.75%
Maintainers
1
Weekly downloads
 
Created
Source

build-modules

Easily build a umd package from a project of CommonJS (node.js style) modules that can be loaded via require.js or as a traditional browser global loaded in a <script> tag. Has an option to "watch" the source files and rebuild the package on the fly.

This uses webpack under the hood.

Install

npm install build-modules

Example

var build = require('build-modules')
var emitter = build(__dirname+'/rootDirectory/moduleName', {output:{path: __dirname+'/generatedFile/'}})
emitter.on('done', function() {
   console.log("Done!")
})
emitter.on('error', function(e) {
   console.log(e)
})
emitter.on('warning', function(w) {
   console.log(w)
})

Why use build-modules over Browserify and Webpack?

If you just want to easily support people using require.js and traditional script inclusion, but don't need anything complicated, this module is for you. It also exposes the "watcher" ability from webpack (which browserify doesn't have).

Usage

build(filepath, options)
  • filepath - The absolute path to the module file.
  • options - An object with optional parameters. Can contain the following members:
    • watch - If true, sets up a watcher that rebuilds the bundle whenever relevant source files change (keeps running until the process closes)
    • name - The name of the global variable in the case the UMD package is loaded without a module system (defaults to path.basename(filepath))
    • header - A string to put at the top of the build bundle.
    • output - An object with the members:
      • path - Where to put the bundle file (defaults to the entrypoint directory)
      • name - What to name the output bundle (defaults to options.name+'.umd.js')
    • alias - Webpack alias option.
    • plugins - Additional webpack plugins to add.
    • jsonpFunction - The name of the jsonp function name (defaults to webpack's default).
    • minify - If false, this doesn't minify and also adds pathinfo to modules in the bundle. Default: true.

Outputs the following files:

  • A minified universal module
  • A sourcemap file

Known issues

When build is called with the watch option, 'done' is emitted twice in a row on the first run. After that, you just get the expected 1 per build.

Change Log

  • 2.0.3 - adding a 'minify' parameter that allows you to turn off minifying (for debugging purposes)
  • 2.0.2 - fixing building modules that require files below their directory
  • 2.0.0 - BREAKING CHANGE
    • Using webpack instead of browserify
    • Parameters all change
    • A watching rebuilder can be configured now
  • 1.0.12 - Updating to fix breaking change in browserify. Also shrinkwrapping so this never happens again.
  • 1.0.10 - upgrading modules so no dependencies have post-install scripts (which npm chokes on very often)
  • 1.0.9
    • deprecating this module
    • adding bundle options to support sourcemaps (this is probably the last addition that will be made to this module)
  • 1.0.4 - changing api to pass in the module path as the 4th parameter instead of the module contents
  • 1.0.2 - now uses browserify and just outputs umd packages.
  • 1.0.1 - now supports modules with dependencies!

License

Released under the MIT license: http://opensource.org/licenses/MIT

FAQs

Package last updated on 10 Feb 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc