GET method endpoints

GET /posts. This endpoint can be tested with your browser. Go to http://localhost:3000/api/posts. I have manually inserted three rows with the createPost method:

If you want to test it on Postman, then write the same URL (http://localhost:3000/api/posts), select the GET method, and click on the Send button:

GET /post/:slug

This endpoint is also a GET, and you need to pass the slug (the friendly URL) in the URL. For example, the slug of the first row, My blog post 1, is my-blog-post-1. A slug is a friendly URL that has the ...

Get React Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.