Skip to content

NHQ/opa

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

74 Commits
 
 
 
 
 
 
 
 

Repository files navigation

famous!

A quick command line bundler for prototyping front-end, multi-user, real-time aplications using browserify. As of the latest version of OPA, it uses browserify via watchify

npm install -g watchify famous

Now create a new app folder using famous:

famous -c myAppDirname
cd myAppDirname

famous -c creates everything you need to get started. There's an index.js, for your module, an entry.js for your pre-bundle, and a public folder for serving it all up.

Now write your module in index.js, and module.export it.

index.js

module.exports = function(x){return x + 4}

in your entry.js, do:

var fn = require('./')
console.log(fn(12))

then whip up the server with famous:

famous -e entry.js -o public/bundle.js

Your app will be served up at a your localhost, port 11001 or greater. You can edit the code, and b/c we're using watchify, your bundle will update automatically. You have to refresh the page tho. Note that all arguments to famous are passed to browserify, so you can use browserify to full effect.

About

A quick command line server for prototyping browserified front end modules and apps.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published