### Starting Next.js Development Server (Bash) Source: https://github.com/themeselection/materio-mui-nextjs-admin-template-free/blob/main/javascript-version/README.md This snippet provides the command-line instructions to initiate the Next.js development server. It offers options for npm, yarn, and pnpm package managers, allowing developers to choose their preferred tool. The server typically runs on `http://localhost:3000` and supports live updates upon file modifications. ```bash npm run dev # or yarn dev # or pnpm dev ``` -------------------------------- ### Starting Development Server with pnpm, yarn, or npm Source: https://github.com/themeselection/materio-mui-nextjs-admin-template-free/blob/main/README.md This snippet provides commands to start the development server for the Materio template. After running one of these commands, the application will be accessible at http://localhost:3000. pnpm is the recommended package manager for this operation. ```Bash # For pnpm (recommended) pnpm dev # For yarn yarn dev # For npm npm run dev ``` -------------------------------- ### Running Next.js Development Server (Bash) Source: https://github.com/themeselection/materio-mui-nextjs-admin-template-free/blob/main/typescript-version/README.md These commands initiate the Next.js development server, typically making the application available at `http://localhost:3000`. Developers can select their preferred package manager (npm, yarn, or pnpm) to execute the `dev` script, which is commonly defined in the project's `package.json` file. ```bash npm run dev ``` ```bash yarn dev ``` ```bash pnpm dev ``` -------------------------------- ### Installing Project Dependencies with pnpm, yarn, or npm Source: https://github.com/themeselection/materio-mui-nextjs-admin-template-free/blob/main/README.md This snippet provides commands to install project dependencies using pnpm, yarn, or npm. It is recommended to use pnpm for better dependency management. These commands should be run from within the 'typescript-version' or 'javascript-version' folder of the template. ```Bash # For pnpm (recommended) pnpm install # For yarn yarn install # For npm npm install ``` -------------------------------- ### Required HTML Attribution Link for ThemeSelection Source: https://github.com/themeselection/materio-mui-nextjs-admin-template-free/blob/main/README.md This HTML snippet represents the required attribution link for projects utilizing the free Materio template. It must be included in the footer of the web application or project to comply with the MIT license terms, ensuring proper credit is given to ThemeSelection. ```HTML ThemeSelection ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.