Node.js MVC framework for seriously rapid application development.
Quickly get up and running with a node.js MVC app, using a simple view syntax and an ASP.NET MVC-style project layout. Tachi is all about ease of rapid development, with a simple mindset, easily expandable feature set, and a number of features to help increase web application speed.
Catch me on twitter (http://twitter.com/sigmoidfx) for more info!
npm install tachi
Grab a copy of the twitter bootstrap template for Tachi (http://github.com/EdJ/Tachi-bootstrap), or just use the following code:
Controllers/DefaultController.js:
module.exports = {
index: function () {
return this.Json({ message: 'Hi! Welcome to Tachi!'})
}
}
index.js:
var TachiHandler = require('Tachi');
var routeData = {
routes: [
{
url: '/',
data: {
controller: 'DefaultController',
action: 'index'
}
}
],
defaultRoute: '/'
};
var settings = {
port: 8080
};
var handler = new TachiHandler(settings, routeData);
handler.start();
- Solid, understandable routing
- Familiar MVC model (View(), RedirectToAction(), etc.)
- Simple, fast templating engine
- Minimal work required to quickly build complex web apps
Copyright (c) 2013 Ed J [email protected]
Do what you want with the code; No warranty of any kind is given assuming its use.