Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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
```