Accessing LocalStorage In NextJS • October 05, 2020
I recently migrated a Content Management System from Create React App to NextJS in order to score some SEO points.
One of the challenges I faced was seeing these errors at compile time. window is undefined or document is undefined No Access Window, and document are not available on the server. This is why you'll run into these types of errors if you are trying to access window properties or…
Keep Reading →
How To Build A Command-Line Tool With NodeJS - A step-by-step guide • January 13, 2020
This post will guide developers on building CLI tools with node.js. You will also learn how to publish the tool to NPM. Node.js allows us to build command-line tools using JavaScript. There is a rich node.js package ecosystem as shown by the npm registry. Building CLI tools that people can use is a good way to increase your coding and problem-solving skills. In this post, we'll explore how I…
Keep Reading →