Building the API
  • Introduction (Bookstore)
  • Generating the Project with NPM
  • Setting Up and Running the Express Server
  • Defining our First GET Route in Express
  • Using Postman to Test the API
  • Writing the Route to Get All Books
  • Writing the GET Route to Get a Specific Book By Id
  • Parsing Incoming Request Body in Express using Middleware
  • Defining the POST Route to Create a Book
  • Defining the PUT Route to Update a Book
  • Defining the DELETE Route to Destroy a Book
  • End of the Express Course Review