https://github.com/frontendmasters/fullstack-app-next-starter
https://github.com/frontendmasters/fullstack-app-next-starter
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/frontendmasters/fullstack-app-next-starter
- Owner: FrontendMasters
- Created: 2022-09-21T18:14:32.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-01T21:00:43.000Z (over 1 year ago)
- Last Synced: 2025-04-29T13:42:34.167Z (about 2 months ago)
- Language: TypeScript
- Size: 152 KB
- Stars: 5
- Watchers: 4
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
> [!NOTE]
> This repo is from an archived version of the course. Watch the latest version of the course on [frontendmasters.com](https://frontendmasters.com/courses/fullstack-app-next-v3/).This is a starter project for the [Build a Fullstack App from Scratch with Next.js course](https://frontendmasters.com/courses/fullstack-app-next/)
### Background
In the lesson [Setup Next.js, ESLint, & TypeScript](https://frontendmasters.com/courses/fullstack-app-next/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.
### Instructions
First, clone this repository and install the dependencies:
```bash
git clone https://github.com/FrontendMasters/fullstack-app-next-starter.git
```Change Directories
```bash
cd full-stack-app-next-starter
```Install Dependencies
```bash
npm install
```After installing the dependencies, run the development server:
```bash
npm run dev
```Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. You can now begin the [Course App Overview](https://frontendmasters.com/courses/fullstack-app-next/course-app-overview/) lesson.
You can also view the [completed project](https://github.com/Hendrixer/fullstack-music) for more information.