roxxhub

Next.js introduction Part 2

Next.js Series This is the second part of the next.js explained series. Here is the previous part. In this post, I’ll try to explain some of features and must know trick and tips you should consider while making your next.js site. Adding components in next.js Just like in react, you can create a seperate folder … Read more

Next.js introduction Part 1

In short, next.js is a web development framework used to create react websites which are more optimized – in the sense of speed, SEO( search engine optimization ) and much more. Problem with React.js The approach react, by default uses is to load the entire website bundle to the client browser. And after that, each … Read more

Web development: A Roadmap of 6 steps

In the simplest form, web development is the process of making functional websites / web apps. Like the one you are seeing right now, and everything you encounter in the web. While its example and applications are everywhere, to become a web developer, or to simply learn web development, there are plenty of skills you … Read more

ReactJS: A simple introduction

What is React ? Why should we use it ? React, also called react.js is a javascript library used to create frontend UI (user interface) of a web application. It does it by letting the users create different reusable components. React makes it easier to do frontend development than it is while using vanilla javascript. … Read more