Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/srounce/node-shimify
- Owner: srounce
- Created: 2014-02-26T10:47:38.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-05-21T00:00:45.000Z (over 9 years ago)
- Last Synced: 2024-04-23T23:55:32.386Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 141 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
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