Thorough backend course suggestions?
from SpiderUnderUrBed@lemmy.zip to programming@programming.dev on 01 Apr 22:42
https://lemmy.zip/post/61816156

Is there any good courses that cover the more technical aspects of backend development? Here are some examples, not even limited to this, but I want to hear more than the basics and also some security things to look out for in like a yt video or something, potentially includes, CORS, Cookies, JWT, server side sessions, server side rendering, websockets, server side events, html patterns (e.g the backend returning html components to be place into the browser). Status Codes, GET and POST, GRPC, file transfers.

#programming

threaded - newest

talkingpumpkin@lemmy.world on 02 Apr 06:52 collapse

For the technologies/standards (CORS, websockets, cookies, etc.) I’d recommend reading the wikipedia article and then the relevant RFC/standard (which will surely be linked from wikipedia).

The server side things you mentioned (sessions, rendering, etc) are functionalities/techniques/patterns that different frameworks implement in different ways, so I’m not sure there’s much material that talk about them in general (or much to say about them in general)… you’ll probably have to explore them in deep with your framework/s of choice (ie. looking at how the framework implements that functionality rather than just using it).