Skip to content

Instantly share code, notes, and snippets.

@bleathem
Created November 12, 2014 21:15
Show Gist options
  • Save bleathem/49aa70dc4f507e6bda74 to your computer and use it in GitHub Desktop.
Save bleathem/49aa70dc4f507e6bda74 to your computer and use it in GitHub Desktop.
package.json:
...
"browser": {
"angular": "./lib/angular/angular.js",
....
},
"browserify-shim": {
"angular": {
"exports": "angular"
},
...
},
"browserify": {
"transform": []
},
...
command-line:
$ ./node_modules/.bin/browserify -r angular:angular -o client/www/vendor.js
index.html:
...
<script src="vendor.js"></script>
...
browser console:
require('angular')
Object {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment