Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

concatenify

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

concatenify

Helps browserify concatenate a tree of files

  • 1.0.0
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

concatenify

Browserify transform for the lazy ones which allows you to concatenate trees of JS files into your bundle.

Why?

While browserify allows you to easily use CommonJS modules on browser code, there are still a few valid use cases for file concatenation:

  • You already use some other concatenation system like Sprockets
  • Your frontend only app already depends on a framework module system like the Angular.js module system
  • You're just being lazy

How

This transform uses glob internally, so you can just use the same patterns from the root of the file you're requiring from.

npm install concatenify
// app.js
var concatenify = require('concatenify');
concatenify('file.js');
concatenify('libs/*.js');
concatenify('libs/**/*.js');
browserify -t concatenify app.js > bundle.js

Concatenify will replace all the calls to itself with require calls to each file matched by the globbed patterns, and browserify will then take care of requiring all those files and automatically wrap them in a CommonJS wrapper.

And because of that you get free sourcemaps with with the --debug flag, so you can tell your files apart on your debugging tool.

License

MIT

Keywords

FAQs

Package last updated on 13 Sep 2014

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