Note: This article first appeared on the LogRocket blog Creating a strong password that you can actually remember isn’t easy. Users who use unique passwords for different websites (which is ideal) are more likely to forget their passwords. So, it’s crucial to add a feature that allows users to securely reset their password when they forget it. This article is about building a secure reset password feature with Node.js and Express.js. Now, let’s…
Tag: nodejs
Use Rust in a Node.js project
- Posted on
- – 2 Comments on Use Rust in a Node.js project
Rust is the most loved language right now — sounds like a cliche already 😃, but it’s true. In fact, it has been added to the Linux Kernel and going to be added to the Windows Kernel. Not every language enjoys that kind of privilege and love, you know. One of the benefits of Rust is that it’s fast, if you have implemented something awesome in Rust and you want…
Process.nextTick, the event loop invader
process.nextTick() is that tough customer that gets in a bank queue and says to the banker, attend to me after the current customer you are attending to, regardless of whether it’s my turn or not. Rude, right? While trying to understand the fundamentals of Javascript & NodeJS, the event loop is usually one of the crucial concepts you’ll come across. The event loop allows Node.js to perform non-blocking I/O operations…