jondubois / requireify

Browserify plugin to access all modules from browser console

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

requireify

Browserify v2 transform to allow access to all modules from browser console

Build Status

Usage

Usage

Install requireify locally to your project:

npm install requireify --save-dev

Then use it as Browserify transform module with -t:

browserify --transform requireify main.js > bundle.js
// /index.js
exports = module.exports = {
  hello: 'world'
};
  
// /foo/dep.js

var dep = require('./foo/dep');
console.log(dep.hello); // world

Now, inside your browser console, you can look up every module on the global require

>> var hello = require('/foo/dep').hello;
>> console.log(hello); // world

You can also include all libraries in the browser console that have been installed using npm and used in your browserify'd code.

About

Browserify plugin to access all modules from browser console

License:Other


Languages

Language:JavaScript 98.6%Language:CoffeeScript 1.4%