Node.js 框架组件:flatiron

jopen 11年前

flatiron 是一款 Node.js 和浏览器的框架组件,是一款构建现代化 web 应用适应性很强的框架flatiron 提供比 Rails 类组件有更丰富配置的框架组件,允许开发者自己添加他们想要的功能组件。

 var flatiron = require('flatiron'),        app = flatiron.app;        app.use(flatiron.plugins.http, {      // HTTP options    });        //    // app.router is now available. app[HTTP-VERB] is also available    // as a shortcut for creating routes    //    app.router.get('/version', function () {      this.res.writeHead(200, { 'Content-Type': 'text/plain' })      this.res.end('flatiron ' + flatiron.version);    });        app.start(8080);

项目主页:http://www.open-open.com/lib/view/home/1387804565734