fastify-generate
Version:
Generate fastify applications fastly
33 lines (21 loc) • 744 B
Markdown
# __packageName__
[](https://standardjs.com)
[](https://prettier.io/)
Short description of your awesome app.
## Developing
When developing, reload automatically:
```sh
npm install
npm run dev
```
Under the hood, [nodemon](https://www.npmjs.com/package/nodemon) is watching
and will restart the app when any file changed.
## Start
Install dependencies and start the app:
```sh
npm install
npm start
```
## `async/await` or callback?
According to [Node Green](https://node.green/), async function is avaiable on
Node >= v7.10.1. If your app will run on node v6, DO NOT use async/await.