Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elonvolo/create-node-ts
https://github.com/elonvolo/create-node-ts
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/elonvolo/create-node-ts
- Owner: ElonVolo
- License: mit
- Created: 2022-12-11T22:44:27.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-08T12:11:14.000Z (7 months ago)
- Last Synced: 2024-04-08T13:29:56.952Z (7 months ago)
- Language: JavaScript
- Size: 979 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
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
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fvitorsalgado%2Fnodejs-boilerplate.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fvitorsalgado%2Fnodejs-boilerplate?ref=badge_shield)
This project is [MIT Licensed](LICENSE).