- TypeScript
- Husky
- CommitLint
- Commitizen
- ESLint
- Prettier
- TypeDoc
With NPM:
npm create @app-template/app@latest my-node-project -- --template nodeWith PNPM:
pnpm create @app-template/app@latest my-node-project --template node- Run
pnpm build:devto build the code. - Run
pnpm start:devin another terminal to execute the code.
pnpm buildBefore running tests, ensure the project is built.
In the development environment:
- Run
pnpm build:devto build the code. - Run
pnpm test:devto run the tests in another terminal.
In the production environment:
- Run
pnpm buildto build the code. - Run
pnpm testin another terminal to execute the tests.