cli to quickly bootstrap a new fastify-app
This package provides the cli skript to create a new @uscreen.de/fastify-app
from scratch inside of a monorepo. No need to install any other prerequisites than node and pnpm. Features include:
- initialize new package.json
- setup application skeleton
- setup dotfiles
- setup .env for starting
Use pnpm create
to create a new fastify-app, like so:
$ pnpm create @uscreen.de/fastify-app new-app
It will create a directory called new-app
inside the current folder.
Inside that directory, it will generate the initial project structure:
new-app
├── .env
├── .env.example
├── .gitignore
├── README.md
├── app
│ ├── app.js
│ ├── config.js
│ ├── plugins
│ │ └── noop.js
│ ├── schemas.js
│ ├── server.js
│ └── services
│ └── noop.js
├── package.json
└── test
├── app
│ └── noop.test.js
└── helper.js
pnpm create
will update itself and checkout the latest version of the boilerplate packed with lot's of best-practice settings and prepared for local dev.
More Details can be found in @uscreen.de/fastify-app
README
After creation has finished cd into the new apps directory and check it's README for options. In general you should be able to start your new app in dev mode, like so:
$ cd ./new-app
$ pnpm install
$ pnpm dev
- add tests
- add more skeletons
- add options to choose from
-
...TBD
- changed skeleton & creation process so it's suitable for use in a monorepo
- upgraded skeleton to fastify@5
- use pnpm instead of yarn
-y
option (it is default now)
- upgraded to node 20.x (LTS)
- upgraded to node 18.x (LTS)
- migrated yorkie to husky
- cleanup app.js and server.js
- uses @uscreen.de/common-esm for esm migration
- uses @uscreen.de/fastify-app options for app creation
- uses nodemon for dev mode
- dropped pm2 package and config
- switch skeleton to ESM only
- upgrade skeleton to fastify@4.x
- added: graceful shutdown in skeleton
- changed: use versions specified in skeleton's package.json
- moved to esm
- upgraded to node 16.x (LTS)
- upgraded to node 14.x (LTS)
- upgraded to fastify 3.x
- upgraded to node 12.x (LTS)
- added instructions
- initially bootstrapped
- added basic skeleton app based on fastify-app
Licensed under MIT.
Published, Supported and Sponsored by u|screen