Skip to main content

Posts

Featured

Get Started With Next.js - Learn From A Newbie

Next.js is an open so urc e react framework.  Using server side rendering Next.js can preload the Javascript and CSS of a page. That makes rendering fast and quicker. Which is also essential from search engine optimization(SEO). This makes next.js very powerful.  The framework is currently used by many large websites like Netflix, Uber, Github. Setup Download and  Install Node.js version 10.13 or later. Download and Install Visual Studio Code or any other editor you like. Create A Next.js app Open your terminal and run " npx create-next-app next-calculator ". This will create a next js app named 'next-calculator'. Run the following commands  " cd next-calculator/ "   " code . " : this will open your project in vs code Run Your App Run " npm run dev " to run your app.  Now visit ' http://localhost:3000 ' from your browser and you will see default next js app page.                  File Structure of Next.js App      NEXT-CALCULA

Latest Posts

Java ArrayList Sorting -2.1

Java ArrayList Sorting - 2

Java ArrayList Sorting - 1

Java ArrayList - 2

Java ArrayList - 1

CodeForces 1095A - Solution and Explanation

CodeForces 1101A - Solution and Explanation