https://github.com/programminginblood/express-typescript-starter
Node.js Typescript Starter With Express, Socket.io, Express-Validator, MongoDB, Logs etc.
https://github.com/programminginblood/express-typescript-starter
Last synced: 4 months ago
JSON representation
Node.js Typescript Starter With Express, Socket.io, Express-Validator, MongoDB, Logs etc.
- Host: GitHub
- URL: https://github.com/programminginblood/express-typescript-starter
- Owner: ProgrammingInBlood
- Created: 2023-08-03T14:09:32.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-03T14:31:06.000Z (over 2 years ago)
- Last Synced: 2025-01-15T07:59:56.742Z (about 1 year ago)
- Language: TypeScript
- Size: 121 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# express-typescript-starter
Node.js Typescript Starter With Express, Socket.io, Express-Validator, MongoDB, Logs etc.
## Run Locally
Clone the project
```bash
git clone https://github.com/ProgrammingInBlood/express-typescript-starter.git
```
Go to the project directory
```bash
cd express-typescript-starter
```
Install dependencies
```bash
npm install
```
Start the development server
```bash
npm run dev
```
Build the code
```bash
npm run build
```
Start the production server (build is required)
```bash
npm run start
```
Check Lint
```bash
npm run lint
```
Auto Fix Lint
```bash
npm run lint:fix
```