Create forum website

Can someone explain to me how to create a forum such as “freeCodeCamp”
Need more for learning (some materials, videos, etc.)

The forum software here is Discourse, which is packed full of features that would take years for one person to implement. A basic forum would be a fairly straightforward challenge project for FCC though. I’m not aware of any tutorials on creating forum software from scratch: everything I’ve seen covers how to install existing forum sofware.
This answer on Quora does outline a lot of the steps you’ll need to take to write a forum. I highly suggest taking an “API first” approach to it, as in write the API first (with tests!), then make the forum interface consume the API.

1 Like

Thanks for the information