DEV Community

Cover image for Introduction to the basics of Next.js

Introduction to the basics of Next.js

aurel kurtula on August 22, 2018

Next.js is a framework that renders react applications on the server. This means when we create a normal react app (using create-react-app for exam...
Collapse
 
imcsweeney profile image
imcsweeney

if anyone has a problem installing this having cloned from GitHub, see the 4th answer here: stackoverflow.com/questions/470081...

ie downgrade your version of npm to 10.15, to install all the dependencies (this worked on macOS Catalina)

curl -o- raw.githubusercontent.com/creation... | bash
sudo npm install -g n
sudo n 10.15
npm install
npm audit fix
npm start

Collapse
 
tsterrm profile image
TsterRM

Would you happen to have a video tutorial of this? Because I got lost in the reading. Plus, I'm unable to run your project files from Github :/

Collapse
 
aurelkurtula profile image
aurel kurtula

Hi.

I don't have it on video, unfortunately.

I was about to just clone the repo, checkout part1 and npm install and then npm start and it just ran.