this post was submitted on 01 Apr 2026
8 points (100.0% liked)

Programming

26316 readers
1089 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 2 years ago
MODERATORS
 

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.

top 1 comments
sorted by: hot top controversial new old
[–] talkingpumpkin@lemmy.world 1 points 9 hours ago

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).