https://github.com/kochan4php/express-ts-starter
Express.ts starter template
https://github.com/kochan4php/express-ts-starter
express express-typescript express-typescript-boilerplate mongodb mongoose socket-io typegoose typescript
Last synced: 10 months ago
JSON representation
Express.ts starter template
- Host: GitHub
- URL: https://github.com/kochan4php/express-ts-starter
- Owner: kochan4php
- License: apache-2.0
- Created: 2023-09-07T23:20:46.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-03T16:10:21.000Z (about 1 year ago)
- Last Synced: 2025-03-18T21:09:06.251Z (10 months ago)
- Topics: express, express-typescript, express-typescript-boilerplate, mongodb, mongoose, socket-io, typegoose, typescript
- Language: TypeScript
- Homepage:
- Size: 773 KB
- Stars: 8
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
🌟 Express.ts Starter Template 🌟
## Setup locally
```bash
# clone this project
git clone https://github.com/kochan4php/express-ts-starter.git
# go to the project folder
cd express-ts-starter
# install pnpm if you does'nt have
npm i -g pnpm
# install dependencies
pnpm install
# create environment file and setup your environment variables for each files
pnpm create-env
# after setup your environment variables, launch docker database for development mode
pnpm docker:db:dev:up
# after that, run the project in local development mode
pnpm start:local:dev
```