This is a small Express.js web API to store and serve different quotes.
- This project is part of the Codecademy curriculum for the Full-Stack-Engineer career-path
- For the most part the front-end part was already provided. The aim of the project was to implement the routing logic using Express.js
- The project was built outside of the Codecademy environment to learn how to set up a server on your own node environment and test the functionality of the API while coding
- Express 4.17.1
- Displaying a quote by a certain author
- Displaying all quotes
- Displaying a random quote
- Adding quotes
Live demo here
The dependencies which are necessary to run this app can be found in the package.json file.
- Clone the repo
- Navigate to the project folder in the terminal and run
node server.js
to start the server 3. Visit localhost:4001 in the browser to interact with the front-end
- Setting up a server and running it while working on the app to test
- Getting used to implement Express routing
The project is finished including the optional tasks.
- This project is part of the Codecademy curriculum.