如何使用flatiron节点框架创建Web应用程序框架?

时间:2012-02-05 16:36:50

标签: javascript node.js flatiron.js

我在这里看到文档http://flatironjs.org/来创建应用程序框架。指定的命令是

flatiron create <type> <app-name>

但是我没有看到“类型”的任何值。我试过http,它没用。任何投入都赞赏。

2 个答案:

答案 0 :(得分:5)

我认为文档可能与当前代码略有不同步。现在,据我所知,正确的命令行命令是:

flatiron create <app-name>

这会创建一个cli骨架应用程序,对于Web应用程序,您将需要对http-sample.js文件中的app.js文件进行一些更改,您可以在以下位置找到这些文件:

https://github.com/flatiron/flatiron/tree/master/examples

您还需要为包依赖项添加union。

答案 1 :(得分:0)

cmd:flatiron create <app-name>实际上默认会生成一个http应用程序骨架。如果您在cli上输入flatiron create --help,您将获得:

help: Generates a flatiron skeleton application. If no <type>
help: is specified an HTTP application will be created.
help: <type> can currently be either cli or http
help:
help: create <app-name> <type>