API to allow users to log updates to their products
- User can create/view/update a product
- User can log update(s) to a product
- User can view an(all) update(s) to a product
- User can view all products
- User can signin/signup
Database : PostgreSQL(Render) Backend : Node.js, Express.js Deployment : Render/Vercel
Erasor.io Designs Figma Designs
- Clone the repository
- Run
npm install
to install all the dependencies - Run
npm start
to start the server - Run
npm test
to run the tests
The API documentation can be found here
- API design v4 by Scott Moss
- Build small features, test them and then build on top of these tested features.
- More complex the feature, more time it takes to build and test. So divide it in chunks and build and test them separately.
sequenceDiagram
participant browser
participant server
browser->>server: GET https://studies.cs.helsinki.fi/exampleapp/notes
activate server
server-->>browser: HTML document
deactivate server
browser->>server: GET https://studies.cs.helsinki.fi/exampleapp/main.css
activate server
server-->>browser: the css file
deactivate server
browser->>server: GET https://studies.cs.helsinki.fi/exampleapp/main.js
activate server
server-->>browser: the JavaScript file
deactivate server
Note right of browser: The browser starts executing the JavaScript code that fetches the JSON from the server
browser->>server: GET https://studies.cs.helsinki.fi/exampleapp/data.json
activate server
server-->>browser: [{ "content": "HTML is easy", "date": "2023-1-1" }, ... ]
deactivate server