15 Rules For Writing Clean JavaScript

blank

So you are a React developer or Node.js developer. You can write code that works. But can you write code that is visually beautiful and understandable by others? Today we will see some rules to make your JavaScript code clean and clear. Rule 1. Don’t Use Random Characters as Variable Don’t use some random character … Read more

Start Your Journey with Next.js

Start Your Journey with Next.js What is Next.js? Next.js is a framework for React. It makes developing with React much cleaner and more efficient. In their documentation they define Next.js as: “the React Framework for Production” And its features truly justified the claim. We will talk about them later. Why Next.js? Next.js gives you the … Read more

Secure ReactJS Applicaiton on AWS

Secure ReactJS Applicaiton on AWS Security is very important for websites nowadays. Customers don’t feel confident providing their information on an unsecured website. If you have a React app served over S3 you can secure it very easily using AWS service. If you have an application that is hosted on S3 Bucket in AWS( Which … Read more

NextJS Internationalization using Google Translator

How to internationalize a NextJS website? Setup a CMS or use i18n Connect each piece of text with a key in the translation file. Translate each piece of text. But all of these take a huge amount of time. Today I will show you the fastest way to add internationalization in a NextJS website. In … Read more

Setup Mixpanel Analytics in a NextJS Application

Analytics is crucial for any profitable application, whether it’s a small application with 100 users or a large application with 10,000 users. Understanding your users is one of the most critical things. And mixpanel is one of the best tools to do that. Today, we will learn how to integrate and start mixpanel tracking. Setup … Read more