- Node.js >= 16
- Open command line to repo root
- Run
npm install - Run
npm start
Add a new function to index.ts:
app.post("/my-url-goes-here", (request, response) => {
// do stuff with the request
console.log(request.body);
// do stuff with the response
response.send(200, {success: "true"})
});