Published: August 31 2021
This is a quick example of how to build a form in Next.js with the React Hook Form library that supports both create and update modes.
Published: August 30 2021
A quick post to show how to redirect users to the login page in a Next.js front-end (React) app.
Published: August 29 2021
How to build a simple full stack login application in Next.js that uses Basic HTTP Authentication.
Published: August 28 2021
This is a quick post to show how to manage (read/write) data in a JSON flat file with Next.js, it's useful for building example apps or for when you need to get up and running quickly before setting up a full database such as MongoDB, MySQL, SQL Server etc.
Published: August 27 2021
This is a quick post to show how to track the mounted status of a React component so you can check if it's mounted or unmounted before performing certain actions.
Published: August 26 2021
A tutorial and example showing how to implement alert / toaster notifications in Next.js.
Published: August 25 2021
A quick set of examples to show how to send HTTP DELETE requests to an API using axios
Published: August 24 2021
A quick set of examples to show how to send HTTP PUT requests to an API using axios
Published: August 23 2021
This is a quick post to show how to implement a global exception handler in a Next.js API.
Published: August 20 2021
This is a quick post to show how to add middleware to the request pipeline of a Next.js API so it supports similar functionality to ExpressJS.
Published: August 19 2021
Last updated: March 31 2023
In this tutorial we'll go through an example of how to build a simple user registration, login and user management (CRUD) application with Next.js.
Published: August 04 2021
This tutorial shows how to build a simple full stack login application in Next.js that uses JWT authentication.