Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jinhduong/easyucm
https://github.com/jinhduong/easyucm
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jinhduong/easyucm
- Owner: jinhduong
- License: mit
- Created: 2020-04-11T08:31:10.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-09T12:21:54.000Z (almost 2 years ago)
- Last Synced: 2024-10-13T13:23:30.014Z (2 months ago)
- Language: TypeScript
- Size: 945 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```