Next.js - Настройка среды
Поскольку Next.js - это фреймворк на основе реакции, мы используем среду Node. Теперь убедитесь, что у вас естьNode.js и npmустановлен в вашей системе. Вы можете использовать следующую команду для установки Next.js -
npm install next react react-dom
После успешной установки Next.js вы можете увидеть следующий результат:
+ [email protected]
+ [email protected]
+ [email protected]
added 831 packages from 323 contributors and audited 834 packages in 172.989s
Теперь давайте создадим узел package.json -
npm init
Выберите значения по умолчанию при создании package.json -
This utility will walk you through creating a package.json file.
It only covers the most common items, and tries to guess sensible defaults.
See `npm help json` for definitive documentation on these fields
and exactly what they do.
Use `npm install <pkg>` afterwards to install a package and
save it as a dependency in the package.json file.
Press ^C at any time to quit.
package name: (nextjs)
version: (1.0.0)
description:
entry point: (index.js)
test command:
git repository:
keywords:
author:
license: (ISC)
About to write to \Node\nextjs\package.json:
{
"name": "nextjs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"next": "^9.4.4",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}
Is this OK? (yes)
Теперь обновите раздел скриптов package.json, чтобы включить в него команды Next.js.
{
"name": "nextjs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"next": "^9.4.4",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "next",
"build": "next build",
"start": "next start"
},
"author": "",
"license": "ISC"
}
Создать каталог страниц.
Создайте папку страниц в папке nextjs и создайте файл index.js со следующим содержимым.
function HomePage() {
return <div>Welcome to Next.js!</div>
}
export default HomePage
Запустите сервер Next.js
Выполните следующую команду, чтобы запустить сервер -.
npm run dev
> [email protected] dev \Node\nextjs
> next
ready - started server on http://localhost:3000
event - compiled successfully
event - build page: /
wait - compiling...
event - compiled successfully
event - build page: /next/dist/pages/_error
wait - compiling...
event - compiled successfully
Проверить вывод
Откройте localhost: 3000 в браузере, и вы увидите следующий результат.