opa v11.22.0
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 famousNow create a new app folder using famous:
famous -c myAppDirname
cd myAppDirnamefamous -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.jsYour 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.
10 years ago
11 years ago
11 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
12 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago