/nextjs-crashcourse2021

Next.js, React, tutorial

Primary LanguageJavaScript

This is a Next.js Crash Course 2021 project bootstrapped with create-next-app.

Tutorial video: https://www.youtube.com/watch?v=mTz0GXj8NN0

Code from original video: https://github.com/bradtraversy/next-crash-course

Getting Started

First, run the development server:

npm run dev
# or
yarn dev

Open http://localhost:3000 with your browser to see the result.

You can start editing the page by modifying pages/index.js. The page auto-updates as you edit the file.

Build and run

Make build:

npm run build

Live server for production build (static files in 'out' folder):

npm run serve

API routes can be accessed on http://localhost:3000/api/articles. This endpoint can be edited in pages/api/articles/index.js.

The pages/api directory is mapped to /api/*. Files in this directory are treated as API routes instead of React pages.

Check out our Next.js deployment documentation for more details.