Filter
Exclude
Time range
-
Near
Three IOS apps and a Web App that might interest you - Live Loop - apps.apple.com/us/app/live-l… StreamPilot - apps.apple.com/us/app/stream… City Discoverer - apps.apple.com/us/app/city-d… And EventLoop - web.live-loop.live

80
Two IOS apps and a Web App that might interest you - Live Loop - apps.apple.com/us/app/live-l… StreamPilot - apps.apple.com/us/app/stream… And EventLoop - web.live-loop.live/

42
Two IOS apps and a Web App that might interest you - Live Loop - apps.apple.com/us/app/live-l… StreamPilot - apps.apple.com/us/app/stream… And EventLoop - web.live-loop.live/

202
🚀 Day 29 — Restarting My Full-Stack Journey Today I went deeper into Node.js and learned what actually happens behind the scenes when JavaScript runs outside the browser. This was one of those topics where understanding the internals made many previously confusing concepts finally click. 📚 What I learned today: ✅ How JavaScript Runs in Browsers vs Node.js * Browsers provide Web APIs * Node.js provides Node APIs * Both use JavaScript but have different runtime environments ✅ Understanding Node.js Architecture * V8 JavaScript Engine * Node.js APIs * C/C Bindings * libuv * Event Loop Understanding how all these components work together to execute JavaScript outside the browser. ✅ Node.js Process Lifecycle Learned what happens when we run: ```bash node index.js ``` * A Node.js process is created * A main thread is allocated * Top-level code starts executing * Modules are loaded * Event callbacks are registered * Event loop starts processing tasks ✅ Event Loop Deep Dive Explored major event loop phases: * Timers * I/O Poll Phase * `setImmediate()` * Close Callbacks And how Node.js decides when to continue or exit the process. ✅ Main Thread vs Thread Pool Learned: * JavaScript runs on the main thread * CPU-blocking code can freeze execution * libuv uses a thread pool for certain expensive operations * Why blocking code like `while(true)` should be avoided ✅ Understanding Asynchronous Execution Practiced examples using: * `console.log()` * `setTimeout()` * Event Loop execution order And understood why asynchronous callbacks execute after synchronous code completes. 🛠️ Practice: * Explored Node.js execution flow * Tested event loop behavior using timers * Experimented with callback execution order * Learned how blocking code impacts application performance 💡 Biggest takeaway: Before today, I knew that Node.js was "single-threaded." Now I understand what that actually means. Learning about the event loop, libuv, the main thread, and asynchronous execution helped me understand how Node.js handles thousands of operations efficiently without blocking the application. The deeper I go into backend development, the more fascinating it becomes 🚀 #100DaysOfCode #FullStackDevelopment #BackendDevelopment #NodeJS #JavaScript #EventLoop #WebDevelopment #LearningInPublic #ChaiCode #dayxwebtoon #TrendingforPavel #100DaysOfSilence #DAY29 @Hiteshdotcom @nirudhuuu @yntpdotme @ChaiCodeHQ @surajtwt_ @codedailybot @_100DaysOfCode @100days
🚀 Day 28 - Restarting My Full-Stack Journey Today was another exciting backend day as I moved beyond theory and started understanding how web servers, Express.js, TypeScript tooling, and backend project workflows work together. I also built my first basic backend Todo CRUD application to put these concepts into practice. 📚 What I learned today: ✅ Understanding Web Servers * How clients and servers communicate * Ports and server processes * Why servers continuously listen for incoming requests ✅ Node.js HTTP Module * Creating a basic web server using the built-in `http` module * Understanding: * Request (`req`) * Response (`res`) * Handling different routes and HTTP methods manually ✅ Dependency Management * Understanding: * `node_modules` * Dependency trees * `package-lock.json` * Why dependency locking is important for consistent environments ✅ Introduction to Express.js * Creating APIs with Express * Routing using: * `app.get()` * `app.post()` * Parsing JSON using: * `express.json()` ✅ TypeScript Project Setup * `tsconfig.json` * `rootDir` * `outDir` * Compiling TypeScript into JavaScript ✅ Development Workflow Improvements * Local TypeScript installation * `tsc-watch` * Auto compilation and server restart during development ✅ Type Definitions * Understanding `@types/*` * Installing: * `@types/node` * Express type definitions * Better IntelliSense and type safety ✅ Runtime Validation * Introduction to Zod * Understanding why TypeScript alone is not enough for validating external inputs 🛠️ Practical Work Built a basic Todo CRUD API using: * Node.js * Express.js * TypeScript Implemented: ✅ Create Todo ✅ Read Todos ✅ Update Todo ✅ Delete Todo This was my first step toward building real backend applications. 💡 Biggest takeaway: Frontend taught me how users interact with applications. Backend is teaching me how applications actually process requests, manage data, and communicate with clients behind the scenes. Building my first CRUD API made the client-server relationship much clearer and made backend development feel far less intimidating. Excited to keep moving deeper into Node.js, Express, APIs, validation, and databases 🚀 #100DaysOfCode #FullStackDevelopment #BackendDevelopment #NodeJS #ExpressJS #TypeScript #WebDevelopment #LearningInPublic #ChaiCode #DaysCount #DAY1 #DAY28 #trendingsongs #100daysofadam @Hiteshdotcom @piyushgarg_dev @nirudhuuu @surajtwt_ @yntpdotme
55
shower thought In gateway scenarios, if io_uring submits mostly happen on the EventLoop, maybe IoOps can be reused to avoid one extra object allocation. probably not a huge performance win, but jfr objectSample events might be a bit happier
1
1
6
316
Learning backend engineering concept after work: Explaining Event loops after I just learnt it. #backenddeveloper #programmer #backendengineer #eventloop
It's time to really challenge myself. I feel like a total beginner. #100DaysOfBackendMastery
2
4
30
1,533
ฝันที่เกินฝัน! กับการเห็น Stage ที่ “BAMBAM-JEFF SATUR-PP -TIMETHAI” มาแสดงด้วยกัน! เห็นมีหลุดสปอยล์มีการใช้สลิงโหนใดใด แล้วอยากดูสุดๆ . ใครยังไม่มีบัตร ยังเปิดขายที่ EVENTLOOP แล้วเจอกัน 20-21 มิ.ย. นี้ ที่ศูนย์ประชุมสิริกิตต์ #YOU2PLAY #THETITANSCONCERT2026
211
222
3,276
🔥 How Node.js Manages Thousands of Requests 🌐 Full blog link :rupeshpradhan-blogs.hashnode… Learn how Node.js handles multiple requests using a single thread ⚡ ✔️ Event Loop ✔️ Concurrency ✔️ Non-blocking architecture ✔️ Background workers ✔️ Scalability explained simply Big thanks to @Hiteshdotcom Sir, @piyushgarg_dev & @ChaiCodeHQ ❤️ #Nodejs #JavaScript #BackendDevelopment #EventLoop #MERN
5
44
Replying to @gxjo_dev
cause of Eventloop and many queues but in run time lets take a webbrowser env gets the advantage of pure multithreading and multiprocessing
1
2
1,522
eventloop good too
2
16
but the eventloop doesn't stop on empty queue 🤗
1
2
63
В Perk тебя заранее просят создать на своей машине проект на любом фронтенд фреймворке и работать в любой IDE, устанавливая любые библиотеки для фетчинга, например TanStack Query В конце, в обеих компаниях спрашивали буквально 2-3 вопроса (типа eventloop в общих чертах, например)
1
5
671
Today’s cohort was all about EventLoop! We built a Kanban board, mastered event listeners, and explored event delegation for smooth drag-and-drop actions. Learning never stops! #chaicode #WebDev #EventListeners
7
46
I couldn’t attend yesterday’s lecture, so I completed it today, and man… it was damn fun. I already understood how the Node.js Event Loop works internally, but learning it from the master @piyushgarg_dev made things even clearer. Also, thanks to Piyush sir, I finally bought X Premium. Micro-managing captions and squeezing ideas into character limits just wasn’t worth it. So from now on, expect posts that actually deliver value instead of being compressed to fit content limits. Thank you, @piyushgarg_dev, for inspiring that decision. @ChaiCodeHQ @Hiteshdotcom @nirudhuuu @yntpdotme @devwithjay @surajtwt_ @BlazeisCoding @Aasuyadavv #chaicode #nodejs #nodejsinternals #eventloop
4
2
63
726
Just dropped a new blog post understanding libuv and event loop. Check it out: blogmudassir.hashnode.dev/un… Guidance of @piyushgarg_dev @Hiteshdotcom #chaicode #hashnode #eventloop #libuv
6
40
Efforts Never Die.... ft. @piyushgarg_dev #cooked #eventloop
15
8
248
4,436
🚀 We are trending 🔥 This is the power of community 💛 #JavaScript #NodeJS #EventLoop #ChaiCode — all trending together ✨ Proud to be part of a space where people learn, build, and grow in public 👩‍💻 @ChaiCodeHQ @Hiteshdotcom @piyushgarg_dev @nirudhuuu @yntpdotme
3
76
Such an awesome class it was🔥 Understood Eventloop and ThreadPool in today's class. And honestly now it all makes sense, how Node.js internally runs JS in different environments. @piyushgarg_dev Superb class sir🚀 @Hiteshdotcom @nirudhuuu @yntpdotme Thanks for the guidance😁
7
70
Node.js internals were explained today. Init → top-level code → event loop → thread pool. Now the runtime flow actually makes sense. Thanks to @piyushgarg_dev , @Hiteshdotcom, and the TAs. #NodeJS #JavaScript #EventLoop @ChaiCodeHQ @nirudhuuu @yntpdotme
1
39
399