https://github.com/tinymins/ts-node-express-boilerplate
TypeScript Node Express Boilerplate
https://github.com/tinymins/ts-node-express-boilerplate
Last synced: 10 months ago
JSON representation
TypeScript Node Express Boilerplate
- Host: GitHub
- URL: https://github.com/tinymins/ts-node-express-boilerplate
- Owner: tinymins
- Created: 2021-07-29T06:35:12.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-12-31T07:41:50.000Z (about 1 year ago)
- Last Synced: 2025-02-13T03:51:52.211Z (12 months ago)
- Language: TypeScript
- Size: 56.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TypeScript Node Express Boilerplate
This is a boilerplate project for typescript node express.
## Setup
### Environment
**For Linux**, ensure that your node has permission to listen on port 80. (OSX system do not need this)
```sh
sudo apt-get install libcap2-bin
sudo setcap cap_net_bind_service=+ep `readlink -f \`which node\``
```
### Start
```sh
npm install
npm start
```
Open browser and visit http://127.0.0.1/status .