From the course: Next.js 14 from Scratch: Build a Real-World Project Using Next.js 14 and MongoDB

Unlock this course with a free trial

Join today to access over 25,200 courses taught by industry experts.

Environment setup

Environment setup

So before we get started, I just want to go over some of the things that you'll need for this course, which isn't much. So you will need to have Node.js installed on your computer. You can download it from nodejs.org. And we need this because Next.js relies on Node to run server-side code and manage dependencies. We'll also be using NPM, which is the Node Package Manager. So you do need to have Node installed on your computer. So next, you'll need a text editor to write your code. I recommend Visual Studio Code, which you can download from code.visualstudio.com. It's cross-platform, so it doesn't matter which operating system you're on. It's easy to use. It's extremely popular, very intuitive, and has great extensions. You also need to have Git installed on your computer. You can download it from git-scm.com or use your package manager, depending what operating system you're using. But you should have version control for all your projects. But we'll need it specifically to push to…

Contents