This article is a tutorial on user verification in ExpressJS. This is a continuation of my Express web development series. I will be building on top of the concepts discussed in my previous article on handling password resets.
Tag: programming
How to Handle Password Reset in ExpressJS
In this article, I demonstrate how to implement a password reset feature in your ExpressJS application using NodeMailer
How to Create Registration & Authentication with Express & PassportJS
In this article, I’m going to demonstrate how to build a user registration and authentication system in ExpressJS using PassportJS.
How To Set Up Mongoose With ExpressJS
Mongoose allows connection and interaction with MongoDB using JavaScript objects. In this article, I demonstrate how to set mongoose with ExpressJS
How to Set Up Nunjucks with ExpressJS
In this article, I demonstrate how to set up the Jinja2 inspired Nunjucks templating engine when developing an ExpressJS web application.
Periodically Pull Financial Data With Python and Cron
Whenever I have a task that needs automation, python is my goto language. This is due to its simplicity and versatility. Python is extremely powerful for this application and even more so when combined with a utility such as cron.
How To Set Up Cronjobs on MacOS
Cron is a software utility that allows us to schedule tasks (cronjobs) to run periodically, at fixed times or at pre-determined intervals. These tasks can serve any desired function. Some common applications include periodically backing up user data or calling an API endpoint.
How to Optimise React with useMemo and React.memo
There comes a time when we have to worry about more than just making sure our applications work, but that they work optimally. When using react, we have certain tools at our disposal to make sure our applications are optimised. In this article, I will demonstrate how to achieve this using React.memo and the useMemo […]
How to Manage React State with useReducer
React offers many ways to manage state. I have previously written about one such method, using redux. Another way to manage react state is through the use of the useReducer hook. In this article, I am going to demonstrate the usage of this hook along with some of its benefits.
Easy Workbox Integration with create-react-app
Recently, I was in a situation that required workbox integration for background sync in an application. After some trial, error and success, I decided to write this article to demonstrate the easiest way I’ve found to integrate workbox with create-react-app.