r/Backend

Transition to full-stack from front-end

Hey guys,

I’m currently a front-end React developer with around 3-4 years of experience.

I originally started programming with C# and .NET, so I do have some backend experience, but it’s pretty vague at this point. At work I’m mainly focused on the frontend, and only occasionally touch the .NET API for smaller fixes to finish tasks.

Lately I’ve been wanting to become more of a full-stack developer using Node.js instead of .NET, since Node interests me a lot more.

The problem is that most Node.js courses start completely from scratch, which doesn’t really work for me because I already have programming experience. I’m looking for something more intermediate/advanced or at least more practical.

I know project-based learning is usually the recommended approach, but I’m struggling with creating a proper roadmap for myself - what projects to build, what concepts to focus on first, and how to progress from “I can build an API” to actually becoming a solid Node.js backend developer.

For people who already made a similar transition:

\\- What helped you the most?
\\- What kind of projects would you recommend?
\\- What topics should I focus on beyond basic CRUD APIs?
\\- Any courses/resources that are better suited for experienced developers instead of beginners?

Would really appreciate any advice!

reddit.com
u/MeatAndFries — 9 hours ago

Elixir vs golang?

I have a good experience with typescript and little knowledge about rust.

But i dont feel like doing rust now, so i wanted to explore either go or elixir but im confused rn, idk what to choose. Idk which helps more for my career growth

Please share your suggestions

Edit - i dont have any particular projects in mind, i just want to explore other than typescipt( im bored of it because i dont write code anymore claude does)

So im just confused, even if i learn elixir now after 6 months or 1 year or so ill learn golang too. So the better question is which one shall i explore first go or elixir?

Also it should help me for my career growth, and make me a better developer too.

Sorry for the rant and for my current state of confusion! 🥲

Edit 2: thank you all for your suggestions, i decided to go with golang as it better suits with my long term goals

reddit.com
u/pranav8267 — 12 hours ago

we gave a client 3x faster API responses. the fix had nothing to do with code.

p99 sitting at 600ms. we checked everything. execution plans, indexes, N+1s, connection pool. added Redis caching on the heaviest endpoints. hit rate came back at 4% because param variation meant almost nothing reused. three weeks in and we'd basically just added a round trip to every request.

then someone looked at the NGINX config. keepalive_timeout was 2 seconds. keepalive_requests was 10. under real load, connections were tearing down and renegotiating constantly, every upstream request paying SSL handshake and TCP setup overhead. gzip wasn't on for API responses. upstream keepalive between NGINX and the app wasn't configured at all. fix was a config file. 40 minutes. p99 dropped to under 200ms. some endpoints hit sub-100ms. zero application changes.

the answer was sitting in a config file the whole time while we were rewriting cache invalidation logic. if your app looks healthy and your db looks healthy, check what's sitting between them before you touch anything else. what's the most embarrassing place you've found a bottleneck?

reddit.com
u/supreme_tech — 22 hours ago

SQL: Should I still use CreatedAt & UpdatedAt on the main table if I also have Audit tables?

Say I have a table with users:

USERS

-----

ID

EMAIL

PASSWORD

CREATED_AT

UPDATED_AT

then I also create a table to track changes:

USERS_LOGS

----------

USER_ID

TIMESTAMP

ID

EMAIL

PASSWORD

CREATED_AT

UPDATED_AT

Does it make sense to have CreatedAt and UpdatedAt on the USERS entity if there is already a "TIMESTAMP" field in USERS_LOGS?

reddit.com
u/Loud_Wrangler1255 — 23 hours ago

Which one of these frameworks are the easiest to learn and best to work with between laravel, django, springboot, or rails?

Trying to prioritize building rather than complexity and was looking for some suggestions.

reddit.com
▲ 7 r/Backend+1 crossposts

i built a open source cli for reducing token waste in claude code / codex workflows

ai coding agents (claude code, codex, cursor) burn tokens on things that don't help you ship. i started digging through local claude code + codex logs after burning way more tokens than i expected and realized a huge amount of the waste was context related: generated artifacts, oversized instruction files, repeated tool output, broad repo exploration, stale session state, etc.

so i built prismodev, a local cli that reads repo files + local claude code/codex logs and surfaces token/context waste. no api keys, no login, nothing leaves your machine.

npx getprismo doctor scans your repo and local session logs, flags missing .claudeignore / .cursorignore, finds oversized CLAUDE.md / AGENTS.md files, detects generated artifacts/logs/build output getting pulled into context, estimates avoidable spend, generates compact .prismo context packs, and shows a before/after score. it went from 79 → 91 on my repo in one run.

npx getprismo watch adds live context-pressure monitoring during sessions and catches repeated file reads, generated artifact leaks, oversized tool output, and possible command/tool loops before they spiral. watch --auto continuously updates a live guardrails file with the current issue and exact instructions for the agent to follow as context pressure changes.

npx getprismo watch --rescue generates a paste-ready recovery prompt when a session starts going sideways and pushes the agent back toward the smallest useful context/workflow.

npx getprismo firewall auth-bug creates a scoped context policy before a task starts so the agent stays inside a smaller context boundary instead of wandering through the whole repo.

npx getprismo cc timeline generates a postmortem timeline showing what leaked into context, which files/commands repeated, and where tool-output spikes happened during expensive claude code sessions.

everything runs locally. reads logs from ~/.codex/sessions/ and ~/.claude/projects/.

github: github.com/shanirsh/prismodev

would genuinely love feedback on false positives, missing waste patterns, or workflows that create the most context bloat.i built a open source cli for reducing token waste in claude code / codex workflows

u/Sad_Source_6225 — 1 day ago

How do mid-senior devs differentiate themselves in the age of AI?

Ive noticed at my company a trend of hiring a lot of juniors devs or ppl who don’t have dev backgrounds and having them exclusively churn out AI code. I see this as a way to undercut salaries, they hire junior or non-devs and pay a fraction of what they pay mid-senior. My questions are, is this a sustainable model? And how can I as someone with 5ish years experience stand out from this?

From a c-suite/management perspective they are all about cost savings, if they can hire a junior/non-dev using AI to build out their codebase why hire a mid-senior at 2-3x the price?

What is the selling point/secret sauce that warrants paying a mid-senior dev if a junior/non-dev can churn out code now with AI?

reddit.com
u/throwaway0134hdj — 1 day ago

Where to find real business rules when working on projects ?

Hi everyone. I'm a backend developer working with Java/Spring Boot, and I'm also a fresher. I'm starting to figure out a lot of things and realizing the skills I need to do well in my day-to-day job. One of those things is having a strong understanding of the business rules behind a project, which helps write solid and reliable logic. So I'm trying to work on that.

But here's the thing: if I'm not working on a project for a client who explains all the processes of their organization, where do I find those rules? For example, if I want to work on a finance, banking, or stock management project — where do I find the right business rules? By "right," I mean realistic ones, actually used in the real world.

I feel like this is a big differentiator when it comes to developer levels. So if you guys know any resources that could help, it would be greatly appreciated.

reddit.com
u/No-Rise-9375 — 1 day ago

MVC Structure | Backend | Skeleton

Hey devs! 👊

🏗️ BACKEND ENTERPRISE SKELETONS

Gonna be honest: I'm lazy as hell when it comes to setting up project structures.

Every time I started a new backend project, it was the same thing: create controller, model, service, repository folders... annoying af.

So I mixed laziness with the will to learn, and this came out:

Basically a repo with 4 ready-to-use backend structures:

📦 Java (Spring Boot)

📦 Node.js (JavaScript)

📦 TypeScript (Express + TS)

📦 PHP (Pure MVC)

All files are EMPTY. Just folders. Just organization.

You just need to:

1️⃣ Clone it

2️⃣ Copy the stack folder you want

3️⃣ Fill in with your logic

🔗 Link: https://github.com/SidneiAJr/Esqueletos_backend_enteprise

Fork allowed. Use it, modify it, share it. Just don't sell it - it's free, you know? lol

If it helps you somehow, drop a ⭐ on GitHub.

Made in Brazil 🇧🇷 with coffee and code.

What stack do you guys use the most? Thinking about adding Python and C# if people want it.

Thanks! 🙌

u/Paodemesa — 1 day ago
▲ 7 r/Backend+1 crossposts

Synchronize: true destroyed a production database: Here's the migration setup that prevents it

I used synchronize: true in a NestJS project for way longer than I should have. It was fine in development. But when I renamed a column in an entity, pushed to production, and TypeORM dropped the old column and created a new one on the next restart., data was gone.

You can fix this with migrations, but the TypeORM + NestJS migration setup is very confusing because the TypeORM CLI doesn't know about NestJS's dependency injection. You end up needing two configs, one for AppModule, one for the CLI, and getting them to share the same values without duplicating everything takes a bit of work.

The piece that finally made it click for me was the data-source.ts file. It's a standalone TypeORM DataSource that reads from your .env directly, no NestJS involved. The CLI uses that. NestJS uses ConfigService in AppModule. Both point to the same database, same entities, same migrations folder.

reddit.com
u/UneditedTips — 1 day ago

our ai demo looked perfect. then real users destroyed it in a week.

we had this ai feature working pretty nicely in staging. clean json coming in, small files, predictable prompts, response time was fine and the model was giving decent answers. logs were clean too, so honestly we thought we were mostly done with the risky part.

then actual users started using it and the whole thing got messy pretty fast. first week only and we were already seeing stuff we never tested properly. pdfs with weird formatting, tables copied from excel, prompts with half the info missing, random extra context pasted in, all that kind of stuff. the annoying part was that most of it still passed validation. api returned 200, latency looked fine, no scary errors in logs. so from backend side it looked healthy.

but the answers were not always healthy. some were slightly wrong, some missed important sections because the parser skipped chunks, some retrieval results were just not relevant enough, and our fallback logic was basically too polite. it kept trying to answer instead of saying it did not have enough clean input for this. we were tracking uptime and token usage like that was enough, but we were not really tracking retrieval misses, low confidence outputs or bad answer patterns.

so yeah, lesson learned the hard way. an ai demo working in staging does not mean the feature is ready for real users. staging tests the happy path. production tests every weird thing people can possibly upload or type. curious what broke first for you after shipping an ai feature?

reddit.com
u/supreme_tech — 1 day ago
▲ 22 r/Backend

What do junior/intermediate backend developers do?

Im front-end leaning dev but Im trying to pick up more backend tickets to expand my backend skills.

I am wondering, what are the responsibilities? Id like to bring it up to my manager and push similar iniatives as well.

So far I have done:

- Done database migration by creating new tables or add/modify columns

- Create and adjust endpoints, so that the client can say update a new column in the database with new API versioning

- Logging and monitoring to some degree

- I only worked on repositories where it's the API and API gateway itself. I don't touch other stuff like Kafka setup, Redis, etc.

I have not done:
- Query optimization. I think for Query optimizaiton I will have a chance if people are reporting the backend to be slow.

Im only doing simple shallow backend tickets now, I think I am missing alot of the 'beef' of backend

reddit.com
u/githelp123455 — 2 days ago

Backend debugging still feels like guesswork — I built a terminal-first HTTP/S inspector to help

Backend debugging often means partial logs + guesses, especially when your service is calling multiple APIs.

I built Termtap to make that loop faster:

  • wrap your command with tap run -- ...
  • see outbound HTTP/S traffic in real time
  • inspect requests/responses/failures in terminal

It’s local-first, terminal-first, and avoids code changes for basic traffic inspection. Current scope is intentionally focused (beta):

  • local debugging of outbound traffic
  • scripts/services/CLI tools
  • fast iteration over “why did this integration fail?”

Would love blunt feedback from backend engineers:

  • what workflows this misses
  • what features matter most (replay? payload edit? multi-process?)
  • what would make it production-useful vs just local-useful

GitHub Docs

u/Azpect3120 — 2 days ago
▲ 4 r/Backend+2 crossposts

Show HN: Taso 🛸 – Stop crashing in production due to missing environment variables

Hey everyone!

I just released Taso, a high-performance CLI tool built in Go that solves a problem we’ve all had: The "Ghost" Environment Variable.

You know the feeling—you add a new feature, call os.Getenv("NEW_SERVICE_URL"), but forget to add it to your .env or production secrets. Your app crashes, and you waste 20 minutes debugging.

Taso fixes this.

It uses AST (Abstract Syntax Tree) analysis to scan your source code (Go, JS, TS, etc.) and find every environment variable you are actually using. It then compares them against your .env files and reports exactly what's missing.

🚀 Key Features:

  • Ghost Detection: Finds variables used in code but missing from config.
  • Drift Tracking: Snapshots your env and alerts you if anything changes.
  • Health Scoring: Audits your project and gives you a grade (A-F).
  • Blazing Fast: Scans 10k+ files in milliseconds using SHA-256 caching.
  • Cross-Platform: Support for Windows (Scoop), Mac/Linux (Homebrew).

✨ Check it out:

If you find Taso useful, please drop a ⭐ on GitHub and consider contributing! We have a full roadmap ahead and would love help adding more language parsers.

GitHub Repository: https://github.com/Hossiy21/taso

Install it now:

I’d love to hear your feedback! What language should we add AST support for next? 

u/hossiy16 — 3 days ago
▲ 15 r/Backend

What status codes that you should know on the back of your head?

Hello! doing interviews again, so I wanted to ask here 😄 thanks !

reddit.com
u/badboyzpwns — 4 days ago
▲ 0 r/Backend+2 crossposts

Token usage

I am stuck at the level where it’s hard to control the number of tokens while team is trying to use it effectively, one day it is good other day it eats up so many tokens for no reason but tries to include more files than it should, any basic idea how to segregate the work like feature or folder or related files only etc will be cool??

reddit.com
u/Commercial_Try_2538 — 3 days ago

Week 5 of my journey to becoming a Backend Developer

I’m still focusing on JavaScript for now.

I still need to cover these topics in JavaScript before moving on to the next stage:

- async/await

- selectors

- DOM

The most important thing for me right now is to practice, I really need to do that

*I'm also catching up on other topics

If anyone has advice or suggestions, I’d really appreciate your feedback.

reddit.com
u/R0rren — 2 days ago

Any Tips/Recommendations?

Hi everyone! I'm starting now as a backend developer and I will be very happy if you guys share some of your experinces on the development area. Now I'm learning more about building APIs using node.JS and using JSON as a databank. I'm a Brazilian developer trying my best to lear everything about the area, hoping to find my first opportunity. I greatly appreciate your time, and sorry, It's been quite a while since I've written in English.

reddit.com
u/FelixxNic — 3 days ago