https://github.com/polvallverdu/shoppinglist-server
Websocket for my Shopping List app.
https://github.com/polvallverdu/shoppinglist-server
typescript websocket
Last synced: 11 months ago
JSON representation
Websocket for my Shopping List app.
- Host: GitHub
- URL: https://github.com/polvallverdu/shoppinglist-server
- Owner: polvallverdu
- Created: 2022-06-06T10:30:48.000Z (about 4 years ago)
- Default Branch: lite
- Last Pushed: 2024-05-03T17:43:28.000Z (about 2 years ago)
- Last Synced: 2025-04-14T12:55:36.041Z (about 1 year ago)
- Topics: typescript, websocket
- Language: TypeScript
- Homepage:
- Size: 61.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Typescript-Template
A template to work with typescript. Compatibility with docker, and nodemon.
# How to use
There are different npm scripts implemented:
## 1. nodemon
This one will run the typescript directly through **ts-node** with nodemon.
- `npm run dev`
## 2. Normal Start
This one will compile the typescript and execute it directly
- `npm start`
## 3. Lite Start (Used by containers)
This ones executes the project directly, without compiling.
- `npm run start_lite`
## 4. Compile Typescript
This one only compiles the typescript using the `tsconfig.json` file.
- `npm run tsc`
# What about the `.gitignore`
The `.gitignore` file is ready to ignore compiled or useless files, and prevent uploading different type of configs **(You always need to upload an example of your config)**