0.2.2 • Published 12 years ago

scopify v0.2.2

Weekly downloads
24
License
-
Repository
github
Last release
12 years ago

Scopify Browserify plugin

Tired of having multiple global requires from different libraries or frameworks?

Put at least the browserify bundle into its own scope so it doesn't spam your global namespace.

using the CLI tool

browserify entry.js -p scopify -o browserify.js

Then just throw a <script src="/browserify.js"></script> into your HTML!

using the middleware

var express = require('express');
var app = express.createServer();
app.listen(8080);

var bundle = require('browserify')(__dirname + '/entry.js');
bundle.use(require('scopify'));
app.use(bundle);

Then just throw a <script src="/browserify.js"></script> into your HTML!

using createScope

bundle.use(require('scopify').createScope({
    inject:"console.log('running entry ...')",
    require:"./entry"
}));

Instead of just simply require scopify you can use the createScope directly to pass options:

  • inject takes a string containing code which will be injected right after the bundle source
  • require do an automatically require (just a shortcut for {inject:"require('')"})
0.2.2

12 years ago

0.2.1

12 years ago

0.2.0

12 years ago

0.1.1

12 years ago

0.1.0

13 years ago