npm install:- This command is used to install the dependencies listed in your project’s
package.jsonfile. It reads the dependencies from the"dependencies"and"devDependencies"sections and installs them locally in thenode_modulesfolder.
- This command is used to install the dependencies listed in your project’s
npm install next:- This installs the Next.js framework as a project dependency. Next.js is a React framework that simplifies the process of building React applications by providing features like server-side rendering, automatic code splitting, and more.
npm install he:- This installs the
helibrary as a project dependency.heis a robust HTML entity encoder/decoder written in JavaScript. It helps with encoding and decoding HTML entities, ensuring safe and proper rendering of HTML content.
- This installs the
npm install react-router-dom react-spinners:- This installs the
react-router-domlibrary and thereact-spinnerslibrary as project dependencies.react-router-domis a popular library for handling routing in React applications.react-spinnersprovides a collection of loading spinner components.
- This installs the
npm run dev:- This command runs the development server for your Next.js application. It typically starts a local development server, watches for changes in your code, and automatically reloads the application. The
devscript is a predefined script in Next.js for running the application in development mode.
- This command runs the development server for your Next.js application. It typically starts a local development server, watches for changes in your code, and automatically reloads the application. The