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
ตอนนี้มาสร้าง node 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 ในเบราว์เซอร์และคุณจะเห็นผลลัพธ์ต่อไปนี้