4 - Add JSON server
1. npm install json-server and ts-node
npm i json-server ts-node --save-dev2. Make a server.ts file in a new folder called server

3. Add a file called db.json
4. Add the below script to the scripts in the package.json
5. Start the server and leave it running
6. Navigate to http://localhost:3000

8. Commit your code
Last updated