Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hoax7/brisket
A cli to create boilerplate starter kit apps. See features for supported frameworks.
https://github.com/hoax7/brisket
backend-service boilerplate-template cli fastify typescript
Last synced: about 2 months ago
JSON representation
A cli to create boilerplate starter kit apps. See features for supported frameworks.
- Host: GitHub
- URL: https://github.com/hoax7/brisket
- Owner: HoaX7
- License: mit
- Created: 2024-11-04T15:00:50.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-05T21:29:03.000Z (about 2 months ago)
- Last Synced: 2024-11-05T21:30:50.920Z (about 2 months ago)
- Topics: backend-service, boilerplate-template, cli, fastify, typescript
- Language: TypeScript
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license.md
Awesome Lists containing this project
README
# Brisket
The easiest way to get started with backend starter kit by using `brisket-create-app`. This CLI tool enables you to quickly start building a new backend service, with everything set up for you. To get started use the following command:### Interactive
You can create a new project by running:
```bash
npx brisket-create-app
```
You will be asked for the name of your project and directory. Input the necessary values to install dependencies and create a new TS project.# Get Started
Download the cli using npm
```bash
# install globally
npm i -g brisket-create-app
# or
npx brisket-create-app
# install locally
npm i brisket-create-app
```To create a new project
```bash
# cd into your desired project directory
brisket-create-app# Choose your desired options
√ What is your project called? » my-app
√ Do you want to install dependencies? » No / Yes
√ Do you want to initialize a git repository? » No / Yes
```# Support Frameworks
- Fastify
- Express (WIP)
- NestJs (WIP)By default the cli creates a `fastify-ts` template.
## License
MIT License - see the [LICENSE](https://github.com/HoaX7/brisket/license.md) file for details