Skip to content

fazt/basics_browserify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

browserify main.js -o bundle.js

Enabling Source Maps

browserify --debug main.js -o bundle.js

#with exorcist - create two files

Using Watchify

  • npm install --global watchify
  • watchify main.js -o bundle.js -v

#using beefy

  • npm install -g beefy
  • beefy main.js --live
  • or using global browserify configuration: beefy main.js --browserify $(which browserify) --live

#basic browserify configuration

  • Caching-Coffeify: Coffeescript support while the server is running
  • Coffeeify: for Coffeescript support when we build our output bundle
  • Beefy, for live reload
  • Minifyify, for minfiying our bundle

-installation: npm install --save-dev caching-coffeeify coffeeify minifyify

About

understanding browserify

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published