Excited to share a new episode of Beyond Node.js ✨🎉 This time, we sit down with Ulises Gascón — TC39 delegate and maintainer of widely used JavaScript tools — to talk about what actually matters in production. We cover: • The worst things seen in real Node.js applications • Common misconceptions about Node.js in production • What teams should really focus on If you're working with Node.js in production, this conversation is for you. Watch the full episode in the comments 👇🏼 #Nodejs #JavaScript #Backend #SoftwareEngineering #OpenSource
More Relevant Posts
-
Day 65/100 – Starting with Node.js 🚀 Learned: What Node.js is and how it allows JavaScript to run outside the browser Basic idea of the Event Loop and how Node handles multiple requests efficiently Introduction to Express and how it simplifies backend development What stood out: Node.js doesn’t work like traditional synchronous systems. Instead of waiting, it handles tasks asynchronously using the event loop, making it fast and scalable. #NodeJS #BackendDevelopment #JavaScript #LearningInPublic #100DaysOfCode
To view or add a comment, sign in
-
-
React Tip: Use Functional Updates When new state depends on previous state: javascript // Wrong way setCount(count + 1); // Right way setCount(prevCount => prevCount + 1); Why? React batches updates. Functional updates ensure you always have the latest value. #ReactJS #FrontendDeveloper #CodingTips
To view or add a comment, sign in
-
Nobody understands the JavaScript ecosystem anymore, we just pretend confidently. We tested TypeScript, Deno, and Bun to see what’s actually worth using: https://lnkd.in/g3Mm_fMi #javascript #typescript #deno #bun #nodejs #webdevelopment
To view or add a comment, sign in
-
-
🚀 Still using await inside loops in Node.js? You might be slowing down your entire backend without realizing it. Switching to Promise.all() for independent tasks can massively boost performance⚡ Small optimization. Big impact. Are you writing async code the right way? #NodeJS #JavaScript #BackendDevelopment #Performance #CodingTips #AsyncAwait
To view or add a comment, sign in
-
-
✨ Master JavaScript Array Destructuring for Cleaner Code Modern JavaScript lets you extract values in one line—making your code shorter, clearer, and easier to maintain. 🧠 Why it matters: Readable code = fewer bugs + faster development. ⚛️ If you’re using React, you’re already using destructuring (useState, useReducer). #JavaScript #FrontendDevelopment #WebDevelopment #ReactJS #CleanCode #ModernJS #SoftwareEngineering
To view or add a comment, sign in
-
-
🤯 Ever wondered why React prints old values? I finally understood stale closures by connecting it with JavaScript closures. Sharing my notes in this carousel 👇 “Slide 8 explains the real problem clearly” #React #JavaScript #FrontendDevelopment
To view or add a comment, sign in
-
🚀 Day 967 of #1000DaysOfCode ✨ useEffect Hook in React (Explained Simply) `useEffect` is one of the most powerful hooks in React — but also one of the most misused. In today’s post, I’ve explained the `useEffect` hook in a simple and practical way, so you can understand how and when to use it correctly. From handling API calls to managing subscriptions and syncing data, `useEffect` helps you deal with side effects in your components. The tricky part is understanding dependencies — which often leads to bugs like infinite loops or missed updates. I’ve also covered common mistakes developers make and how to avoid them in real-world applications. If you’re working with React, mastering `useEffect` will make your code much cleaner and more predictable. 👇 What’s the most confusing part of `useEffect` for you — dependencies or execution timing? #Day967 #learningoftheday #1000daysofcodingchallenge #FrontendDevelopment #WebDevelopment #JavaScript #React #CodingCommunity #ReactJS
To view or add a comment, sign in
-
TypeScript Started. Migrating SafelyRest from JavaScript to TypeScript Links:- • GitHub https://lnkd.in/gwfXsp_3 • App https://lnkd.in/d5JnhrGz • Configured "tsconfig" with strict mode • Added strong typing across controllers, services, and models • Replaced "any" with proper types, interfaces, and generics • Implemented type-safe API requests/responses • Added types for env variables and external libraries • Improved async handling with proper Promise types • Better debugging with compile-time error detection #typescript #javascript #backend #fullstack #nodejs #webdevelopment
To view or add a comment, sign in
-
-
you called setState twice. expected +2. got +1. both calls read the same stale count from the current render. they don't compound. they both say "set to 1." welcome to React. why it breaks: state updates don't happen immediately. they're scheduled. so count is still 0 inside your function no matter how many times you call setState. both calls read 0. both set to 1. result: 1. the Fix: use functional updates. each call gets the previous result and builds on it. The code : #reactjs #javascript #webdevelopment #buildinpublic #typescript
To view or add a comment, sign in
-
-
Node.js vs NestJS — Which should you pick in 2026? 🔥 Both are powerful. Both run JavaScript on the server. But they serve very different purposes. Here's a quick breakdown 👇 🟢 Node.js → Raw, flexible, minimal. You build the rules. 🩷 NestJS → Structured, opinionated, enterprise-ready. → Same runtime. Completely different experience. If you're building a quick API or a real-time tool → go with Node.js. If you're building something that needs to survive a growing team → NestJS is worth the learning curve. Which one are you using right now? Drop it below 👇 #NodeJS #NestJS #JavaScript #TypeScript #BackendDevelopment #WebDev #SoftwareEngineering #100DaysOfCode
To view or add a comment, sign in
More from this author
Explore content categories
- Career
- Productivity
- Finance
- Soft Skills & Emotional Intelligence
- Project Management
- Education
- Technology
- Leadership
- Ecommerce
- User Experience
- Recruitment & HR
- Customer Experience
- Real Estate
- Marketing
- Sales
- Retail & Merchandising
- Science
- Supply Chain Management
- Future Of Work
- Consulting
- Writing
- Economics
- Artificial Intelligence
- Employee Experience
- Workplace Trends
- Fundraising
- Networking
- Corporate Social Responsibility
- Negotiation
- Communication
- Engineering
- Hospitality & Tourism
- Business Strategy
- Change Management
- Organizational Culture
- Design
- Innovation
- Event Planning
- Training & Development
https://youtu.be/rqmTDVdnMT8