u/Obvious-Treat-4905

LangChain in production still using it or not?

hey, quick question for people actually building with it are you still using LangChain end to end, or have you moved to lighter setups or just specific parts like LangGraph or LCEL?

feels like opinions are pretty split lately

reddit.com
u/Obvious-Treat-4905 — 3 days ago
▲ 19 r/node

when do you actually need a job queue?

hey everyone, i’ve been wondering where people draw the line in Node/Express apps.

at what point do you stop doing background work after response and move everything into a proper job queue?

is a small delay (1–2s async work) still fine in production, or do you avoid it completely from the start?

curious how others handle this in real apps

reddit.com
u/Obvious-Treat-4905 — 3 days ago

how do you keep reactnative projects scalable?

hey everyone, as RN apps grow, things like state, navigation, and API logic start getting messy fast, what’s the one thing that helped you most to keep your codebase clean and production ready architecture, state management, folder structure, or something else?

curious to hear how you handle scaling

reddit.com
u/Obvious-Treat-4905 — 4 days ago

react native felt easy… until it didn’t

when i first started react native i genuinely thought “wait this is way easier than people made it sound”

then real app complexity started showing up slowly. random android only bugs, performance drops that make no sense, state getting messy after adding features for months, weird lifecycle/background behavior, animations behaving differently across devices

still love the ecosystem tbh, but it definitely feels like there’s a point where every rn app suddenly graduates from “fun project” to “why is this happening”

reddit.com
u/Obvious-Treat-4905 — 8 days ago

what actually made you better at android dev besides coding?

been thinking about this lately because most people focus only on learning new tech stacks/frameworks, but honestly some of the biggest improvements for me came from stuff outside pure coding:

- reading other people’s production code
- debugging terrible bugs for hours
- publishing apps and dealing with real users
- performance optimization
- handling play store issues/rejections
- learning how to structure projects properly over time

curious what unexpectedly made you better as an android dev besides just “building more apps”

reddit.com
u/Obvious-Treat-4905 — 8 days ago
▲ 28 r/node

what’s one node.js production issue that humbled you fast?

mine was realizing works perfectly locally means absolutely nothing once real traffic hits

spent days optimizing API response times and the actual bottleneck ended up being a tiny async queue issue causing memory spikes over time

curious what production or debugging issue taught you the hardest lesson in node

reddit.com
u/Obvious-Treat-4905 — 10 days ago

langchain feels amazing in demos and chaotic in production sometimes

been using langchain across a few real client projects lately and i feel like the hardest problems are rarely the prompts themselves anymore

it’s usually stuff like:
agents looping forever
context slowly degrading output quality
retry logic causing chaos
tool orchestration getting messy over time

curious what production problems surprised you the most once real users started touching your workflows

reddit.com
u/Obvious-Treat-4905 — 10 days ago
▲ 0 r/node

why does every node app eventually get one “do not touch” file

started a backend thinking keeping this one simple
few months later there’s always that one cron/job/worker file nobody wants to edit because it somehow controls half the app and breaks reality if you look at it wrong

reddit.com
u/Obvious-Treat-4905 — 12 days ago

Anyone else spending more time debugging agent workflows than prompts lately?

been working more with langchain agents recently and i swear the hard part is barely the prompts anymore lol

it’s memory, routing, retries, loop prevention, tool failures, weird edge cases, state management… basically everything around the model

feels like building reliable agents is way more of a systems or orchestration problem than an ai problem sometimes

curious what’s been the biggest production headache for people here lately

reddit.com
u/Obvious-Treat-4905 — 12 days ago

Been experimenting a lot with LangChain agents lately and one thing I keep noticing is that the longer the chain gets, the more the original intent slowly drifts

Not even full hallucinations, just subtle “this is technically related but not really what I asked for anymore” behavior after a few handoffs/tools.

I started getting way better results after aggressively reducing context between steps and giving each agent a super narrow responsibility instead of one giant “do everything” agent.

Funny enough I ran into the same thing while playing around with multi-model content generation flows in runable too. Smaller scoped tasks stayed way more stable than huge context-heavy prompts.

Curious if others are solving this with memory tricks, better routing, or just stricter agent boundaries?

reddit.com
u/Obvious-Treat-4905 — 15 days ago
▲ 1 r/node

Been spending more time with Node lately after years of mostly frontend work and honestly the ecosystem still surprises me

One thing I noticed though is how fast you can go from “tiny side project” to a full stack app now. Between Express/Nest, AI SDKs, and all the tooling around TS, shipping feels way faster than it did a few years ago.

Lately I’ve even been using Node APIs behind small experiments i made in runable for generating slides/docs and testing AI-related ideas without overbuilding everything first.

Curious what Node tools/libs you all can’t live without in 2026?

reddit.com
u/Obvious-Treat-4905 — 15 days ago
▲ 10 r/node

Hey everyone, I’ve been building a Node.js app that started out simple but as it’s grown things are starting to feel messy. At first it was just a few routes and some basic logic, but now folders are piling up, logic is getting scattered, and it’s harder to keep everything clean and understandable.

I’m curious how people handle this in real projects. Do you stick to something like MVC or feature based structure, or just let it evolve naturally? When do you usually decide to split things into services or modules? And how do you avoid overengineering early on but still keep things scalable?

Would love to hear how you all approach this in real-world setups.

reddit.com
u/Obvious-Treat-4905 — 18 days ago

Hey everyone, I’ve been adding some LLM features into a React Native app and it works fine in demos, but production feels a bit different.

Things like latency, cost tracking, and debugging across different screens get messy pretty quickly, especially on real mobile networks.

Curious how others are handling this: are you calling LLMs directly from RN or always routing through a backend
how are you dealing with streaming responses
and how do you keep things observable without overengineering it

would love to hear how people are doing this in real apps, not just prototypes

reddit.com
u/Obvious-Treat-4905 — 18 days ago

hey, curious what people are actually using in real projects right now, are you sticking with context plus hooks, or going with something like redux, zustand, jotai, etc?

also how do you decide when to move beyond basic state and bring in a library?
trying to understand what setups are holding up well as apps scale

reddit.com
u/Obvious-Treat-4905 — 21 days ago
▲ 0 r/node

hey, random one but happens a lot

when you’re in the middle of coding and blank on a git command, what do you usually do?

google it, use aliases, just guess and hope for the best?

also curious if there are commands you still look up no matter how long you’ve been using git

reddit.com
u/Obvious-Treat-4905 — 22 days ago
▲ 1 r/webdev

hey everyone, curious how you all deal with this every time i forget a git command, i end up breaking flow and going down a rabbit hole just to find the right syntax

do you rely on memory, aliases, built-in help, or some kind of cheatsheet?

also wondering if there are certain commands or workflows you still look up regularly no matter how long you’ve been using git

trying to understand what actually works best in real dev workflows

reddit.com
u/Obvious-Treat-4905 — 22 days ago