https://github.com/Streeterxs/timeout-server
node server to timeout requests
https://github.com/Streeterxs/timeout-server
Last synced: 3 months ago
JSON representation
node server to timeout requests
- Host: GitHub
- URL: https://github.com/Streeterxs/timeout-server
- Owner: Streeterxs
- Created: 2021-10-21T14:11:10.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-08T01:26:38.000Z (8 months ago)
- Last Synced: 2024-11-08T06:39:06.095Z (8 months ago)
- Language: TypeScript
- Homepage: https://timeout-server-chi.vercel.app/
- Size: 7.55 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Timeout Server
This is a server project with a timeout to define how long a request will last.
### Motivation
In production we deal with a lot of third parties apis, some of then are very very slow. In order to test some of our code in a slow environment, Timeout Server simulate a long request### Usage
**local**
- clone this project
- npm install
- npm run dev### Routes
- "/" => base route, returns this tutorial
- "/api/timeout/:ms" => timeout route, ms is a params that will define how long a request will last in milisseconds
- "/api/timeout" => timeout route, with default ms value "100"### Examples
- get /api/timeout/3000 => a get request that will last 3 seconds
- get /api/timeout => a get request that will last 100 ms