Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jinhduong/easyucm


https://github.com/jinhduong/easyucm

Last synced: 8 days ago
JSON representation

Awesome Lists containing this project

README

        

# ts-express-template
Some simply typescript-express templates.
## List
- Blank app: https://github.com/jinhduong/ts-express-template
- Web app: https://github.com/jinhduong/ts-express-template/tree/hbs
- Api app
- JWT app: https://github.com/jinhduong/ts-express-template/tree/jwt
- ect.

## Techs
- Typescript
- Express
- Nodemon

## Installation

```sh
# clone repo
git clone https://github.com/jinhduong/ts-express-template.git

# remove .git file
# make it your own
rm -rf .git && git init && npm init -y
# make it your own (windows)
del /Q .git && git init && npm init -y

# install packages
npm install

# run build and watch typescript files
npm run tsc:s

# run dev mode (nodemon)
npm run dev

# build tsc
npm run build

# open localhost:3000 in browser
```