Its a basic crud for address management written in Nodejs, MongoDB and of course TypeScript
*UPDATE the .env file with your desired mongoose DB URL or use the one provided *RUN the following command *yarn install *yarn dev *The latter command starts the server while the former installs the dependencies
*GET /address - Returns all available addresses *POST /address - Creates new address *GET /address/{id} - Returns specific address *PATCH /address/{id} - Modifies specific address *DELETE /address/{id} - Permanently removes specific address *Basic Redis caching