-2

Im trying to build a website where people can post messages, and other people can comment on it

I have set up an express website with Node. Made it so people can add new posts.

Checked google for tutorials and found alot of "How to make a blog in express" tutorials on Medium; but i'd love to read tutorial where they also show how to add comments.

My request is; could someone point me towards a tutorial that shows me how to make this?

1 Answers1

0
  1. Setup mysql server and connect your nodeJS with this database
    1. Add a form to your site which contains a postId & maybe poster's name & comment content ref
    2. Create an API Endpoint which handles incoming POST requests
    3. Do MySQL Query to fetch data from db and display it.
Sebastian Waldbauer
  • 674
  • 1
  • 10
  • 17