How process.nextTick() works in Node.js?
Explains the Node.js process.nextTick() method, how it defers execution to the next event loop iteration, and compares it to setTimeout().
Aman Mittal is a documentation consultant at Expo and experienced technical writer, specializing in cross-platform mobile and web development, with over 150 programming articles published since 2017.
224 articles from this blog
Explains the Node.js process.nextTick() method, how it defers execution to the next event loop iteration, and compares it to setTimeout().
Explains the internal workings of Node.js, focusing on its single-threaded, non-blocking I/O architecture, the Reactor Pattern, and the role of libuv.
Explores the core philosophy of Node.js, focusing on its UNIX-inspired principles of modularity and dependency management.
A guide to JavaScript coding conventions covering indentation, semicolon usage, line length, and other style guidelines for readable, maintainable code.