Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kazu69/browserify-external-bundle-example
External bundle browserify sample
https://github.com/kazu69/browserify-external-bundle-example
Last synced: 19 days ago
JSON representation
External bundle browserify sample
- Host: GitHub
- URL: https://github.com/kazu69/browserify-external-bundle-example
- Owner: kazu69
- Created: 2014-03-15T07:53:25.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-03-15T09:38:01.000Z (over 10 years ago)
- Last Synced: 2023-03-23T22:15:04.974Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 305 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# browserify-external-bundle-example
## setup
```sh
git clone [email protected]:kazu69/browserify-external-bundle-example.git
cd browserify-external-bundle-example
npm install
grunt
grunt connet
open http://0.0.0.0:1337/# show console log
# --------------------------------------
# main.js jquery version is 2.1.0
# app.js jquery version is 2.1.0
# lib.js angular version is 1.2.10
# --------------------------------------
```## Structure
```sh├── Gruntfile.coffee
├── build
│ ├── app.js
│ ├── lib.js
│ └── main.js
├── gruntTasks
│ ├── aliases.coffee
│ ├── browserify.coffee
│ └── connect.coffee
├── index.html
├── node_modules
├── package.json
└── src
├── app.js
├── lib.js
├── main.js
└── robot.html
```