yoshioka.js is javascript --MVC-- MVVM framework for client-side webapp based on YUI 3.
some text
REQUIREMENT
Development environment :
- node 0.6.2
- less (via npm)
- JRE (for yuicompressor)
Production environment :
- Quick static web server
USE
- create a new folder for your project, then init a git repository :
$ mkdir mywebapp
$ cd mywebapp
$ git init
- add git submodule into your app
$ git submodule add git://github.com/hadrienl/yoshioka.js.git
- Launch the server
$ node yoshioka.js
- You can see all the available commands by typing `help` but the first thing to do is to create a new app. Type `install` !
Then, point your browser to http://yourserverip:1636
WORKAROUND
- On Mac OS X, you can have a `Error: EMFILE, too many open files` error. Type this command to resolve the problem :
$ ulimit -n 8192
overblog/yoshioka.js
Javascript MVC framework for client-side webapp based on YUI 3
JavaScriptNOASSERTION