Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 17 days 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 (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-26T03:42:52.000Z (5 months ago)
- Last Synced: 2024-10-13T00:18:43.781Z (about 1 month ago)
- Topics: express, express-typescript, express-typescript-boilerplate, mongodb, mongoose, socket-io, typegoose, typescript
- Language: TypeScript
- Homepage:
- Size: 771 KB
- Stars: 8
- Watchers: 1
- Forks: 1
- 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
```