简体   繁体   中英

how do I create a web app skeleton using flatiron node framework?

I see documentation here http://flatironjs.org/ to create a app skeleton. The command specified is,

flatiron create <type> <app-name>

But I do not see any values for the "type". I tried http and it did not work. Any inputs appreciated.

I think that the documentation may be slightly out of sync with the current code. For now as far as I can tell the correct command line command is:

flatiron create <app-name>

This creates a cli skeleton app and for a web app you will have to make some changes to your app.js file along the lines of the http-sample.js file which you can find at:

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

You will also need to add union to your package dependencies.

The cmd : flatiron create <app-name> will actually by default generate the a http app skeleton. If you enter flatiron create --help on the cli you'll get:

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>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM