Fist
is a nodejs
framework designed to help create scalable server applications.
What do I get?
Plugin system
Modular application structure. Automatic project files loading.
fist_plugins/
models/
user.info.js
news.list.js
news.available_list.js
controllers/
news_page.js
Loosely coupled architecture
Focus on unit development. Encapsulated business logic.
app
Data models
Simple and intuitive data structures. Unobtrusive data typing.
errors: {} result: news: available_list: type: "post" visibility: "all"
Thin controllers
Just check that your models are valid.
app
Built-in logging tools
Always clear what happening and where. More reliability.
app
Built-in cache
Just specify what parts of your program can be cached. Less loading. More responsiveness.
app
Hello, world!
$ npm install fist
app.js:
var fist = ;var app = ;app;
fist_plugins/routes.js:
module { app;};
fist_plugins/controllers/hello_page.js:
module { app;};
fist_plugins/models/greeting_data.js:
module { app;};
$ node app.js
See the full example code
Quick start
Docs
LICENSE MIT