Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/srounce/node-shimify

browserify middleware to prepend es5-shim
https://github.com/srounce/node-shimify

Last synced: 8 days ago
JSON representation

browserify middleware to prepend es5-shim

Awesome Lists containing this project

README

        

shimify
=======

[Browserify](https://github.com/substack/node-browserify)
middleware to prepend
[es5-shim](https://github.com/kriskowal/es5-shim)
so your browserified bundles work in old browsers.

examples
========

````javascript
var browserify = require('browserify');
var src = browserify()
.require('traverse')
.use(require('shimify'))
.bundle()
;
console.log(src);
````

installation
============

With [http://npmjs.org](npm), do:

npm install shimify