https://github.com/womb0comb0/nodejs-ts-template
https://github.com/womb0comb0/nodejs-ts-template
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/womb0comb0/nodejs-ts-template
- Owner: WomB0ComB0
- License: mit
- Created: 2024-03-13T05:35:33.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-10T11:44:34.000Z (12 months ago)
- Last Synced: 2024-12-26T20:30:11.300Z (5 months ago)
- Language: JavaScript
- Size: 826 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
Node.js Starter ToolKit
Starter Project for a Node.js application using TypeScript with all boring stuff already configured.## Overview
Starter project for **Node.js** applications using **TypeScript** with test, lint, code formatter already configured.
Check the [tooling](#tooling) section for more details.
The preferable way to use this boilerplate is using `npx` command. You can use `npm init` too.
Use the following commands to bootstrap a new project:### NPX
```
npx create-nodejs-ts --no --app=your-app
```### NPM Init
```
npm init nodejs-ts -- --app=your-app
```Without parameters, the project will be created on a folder **my-app** in the same directory where you executed the
command.
All parameters available:```
--destination= Defaults to the current directory
--app= Defaults to my-app
```The final folder will the parameter `destination`, if provided, concatenated with the parameter `app`.
## ESM
The project template now uses **ESM** by default.
## Docker
Minimalist docker image generation.
Check this [Dockerfile](build/docker/Dockerfile).## Local Dev Environment
Run `make up` to spin up a local environment with **Docker Compose**.
Check this [docker-compose.yml](deployments/dev/docker-compose.yml) for more details.## Tooling
- ESM
- TypeScript
- Jest
- EsLint
- Husky
- Commit Lint
- Lint Staged
- Prettier
- Nodemon
- Docker | Docker Compose## License
[](https://app.fossa.com/projects/git%2Bgithub.com%2Fvitorsalgado%2Fnodejs-boilerplate?ref=badge_shield)
This project is [MIT Licensed](LICENSE).