I've started to learn backend development, focus on http server mainly. But I'm really new to this, so it's a little out of focus for me, and I could really use some advice.
For example, if I try to implement something like this
- A http server runs on linux/Windows
- A private REST API which allows to POST a json object, plus a login mechanism, so only authorised user can do the POST.
- Implement a public REST API which allows to GET the same json object
And here is my question: Can I use Nodejs and express to implement all these? I also know little about them. Do I need a Database to implement the login mechanism? Is there any similar tutorial or best practise I can study from?
Regards
Ben