Add Auto-logout To A React App
Learn how to correctly implement auto-logout logic in React
Nov 14, 20212 min read1.2K

Search for a command to run...
Learn how to correctly implement auto-logout logic in React

Understanding the addition operator in JavaScript, with all it's nuances

As a Frontend Developer, it is sometimes humbling to know just how much you don't know about the basic building blocks of the web. The amount of tools and techniques available to us is A LOT! So it's no surprise we often just pick whatever solves our...

There are two next-specific ways you can navigate between pages in a Nextjs application (on the client side) Using the component from next/link (declarative) Using the router object from the useRouter hook (imperative) We're going to look at prefe...