- Create a new HarperDB instance named "video-games."
- Take note of the instance's "username" and "password."
- Set up a schema called "dev" and a table "games" with an "id" field.
- Create a .env file with HarperDB connection details.
- Install Express and dotenv using npm i express dotenv.
- Create a basic Express server listening on the specified port.
- Use Postman to test the "GET" route for "Express Server" response.
- Install Node-Harper client with npm i harperive.
- Establish a client connection in db/client.js using .env details.
- Create CRUD controllers in db/index.js.
- Implement CRUD methods using the HarperDB client and the callback pattern.
- Create an Express router in api/index.js to handle incoming requests.
- Test routes in Postman for insert, search, and delete operations.
- Browse data in HarperDB to see the results.