Note
This repo is from an archived version of the course. Watch the latest version of the course on frontendmasters.com.
This is a starter project for the Build a Fullstack App from Scratch with Next.js course
In the lesson Setup Next.js, ESLint, & TypeScript, Scott scaffolds a new app with npx create-next-app
. However, there are some dependency conflicts with some of the package versions used in the course so the additional depenencies aren't able to be installed. This repository can be used as a starting point for the remainder of the course.
First, clone this repository and install the dependencies:
git clone https://github.com/FrontendMasters/fullstack-app-next-starter.git
Change Directories
cd full-stack-app-next-starter
Install Dependencies
npm install
After installing the dependencies, run the development server:
npm run dev
Open http://localhost:3000 with your browser to see the result. You can now begin the Course App Overview lesson.
You can also view the completed project for more information.