A basic address book app built using a REST API on Express and a Svelte frontend.
- Node v18 or above
- Install dependencies and build the apiTypes project.
npm install
npm run build:apiTypes
- In a new window, run the API server.
npm run dev:api
- In a new window, run the client web server.
npm run dev:client
- You can test that the API is running properly by browsing to the following link:
http://localhost:9090/v1/contacts
- Visit the address book front end app.
http://localhost:5173