Setting Up Your First Node.js Project

Lavesh Katariya

Lavesh Katariya

· 4 min read
Setting Up Your First Node.js Project

Introduction

Starting a new journey in web development can feel overwhelming, but with Node.js, setting up your first project is a breeze. This guide will walk you through everything you need to get started, including installing Node.js, initializing a project, and creating your first server.

Whether you're a beginner or transitioning from another backend language, this tutorial is the perfect place to start.

Prerequisites

Before we dive in, ensure you have the following:

  1. A computer with Windows, macOS, or Linux.
  2. A code editor like VS Code.
  3. Basic knowledge of JavaScript.

Step 1: Installing Node.js

Download and Install Node.js

Head over to the official Node.js website and download the latest LTS (Long-Term Support) version.

Verify Installation

Once installed, open your terminal and check the versions of Node.js and npm by running:

node -v  
npm -v

You should see the installed versions. If not, refer to the Node.js installation guide.

Step 2: Initializing a New Node.js Project

Create a New Directory

Navigate to your preferred folder and create a new directory for your project:

bashCopy codemkdir my-first-node-project
cd my-first-node-project

Initialize the Project

Run the following command to create a package.json file, which will manage your project’s metadata and dependencies:

npm init

Follow the prompts or use npm init -y to skip the manual input and use defaults.

Your package.json should look like this:

{  
  "name": "my-first-node-project",  
  "version": "1.0.0",  
  "description": "",  
  "main": "index.js",  
  "scripts": {  
    "test": "echo \"Error: no test specified\" && exit 1"  
  },  
  "author": "",  
  "license": "ISC"  
}  

Step 3: Installing Dependencies

What Are Node.js Dependencies?

Dependencies are external libraries or tools you can add to your project. For example, Express.js is a popular framework for building web applications.

To install Express.js, run:

npm install express

This creates a node_modules folder (where dependencies are stored) and updates your package.json with the installed dependency.

Step 4: Writing Your First Node.js Script

Create a Basic Server

In the project directory, create a file named index.js and add the following code:

const http = require('http');  

const server = http.createServer((req, res) => {  
  res.writeHead(200, { 'Content-Type': 'text/plain' });  
  res.end('Hello, Node.js!\n');  
});  

const PORT = 3000;  
server.listen(PORT, () => {  
  console.log(`Server is running at http://localhost:${PORT}`);  
});  


Run Your Server

Use the following command to start the server:

node index.js

Open your browser and navigate to http://localhost:3000/ to see your message: "Hello, Node.js!"

Step 5: Adding a Start Script

To simplify starting your server, update the scripts section in package.json:

"scripts": {  
  "start": "node index.js"  
}

Now, you can start the server using:

npm start

Step 6: Version Control with Git

Initialize a Git Repository

Version control is crucial for managing code changes. To initialize a Git repository, run:

git init

Create a .gitignore File

Avoid committing unnecessary files like node_modules. Create a .gitignore file and add:

node_modules

Commit your changes:

git add .  
git commit -m "Initial commit"

Step 7: Exploring Next Steps

Now that your first project is set up, here are some suggestions for what to do next:

  1. Learn Express.js: Build more robust web applications.
  2. Explore npm Packages: Try out tools like dotenv for environment variables.
  3. Connect a Database: Use MongoDB or MySQL with Node.js.

Frequently Asked Questions (FAQs)

1. Can I use Node.js with other frontend frameworks like React or Angular?

Yes! Node.js is commonly used as the backend for frontend frameworks like React, Vue, or Angular.

2. What is the difference between npm and npx?

  • npm: Installs packages.
  • npx: Executes packages without installing them globally.

3. How do I stop the Node.js server?

Press Ctrl + C in your terminal to stop the server.

Conclusion

Congratulations! You've successfully set up your first Node.js project and built a basic server. With this foundation, you're ready to explore the endless possibilities Node.js offers, from APIs to real-time applications.

Start experimenting and make your ideas come to life with Node.js!

Lavesh Katariya

About Lavesh Katariya

Innovative Full-Stack Developer | Technical Team Lead | Cloud Solutions Architect

With over a decade of experience in building and leading cutting-edge web application projects, I specialize in developing scalable, high-performance platforms that drive business growth. My expertise spans both front-end and back-end development, making me a versatile and hands-on leader capable of delivering end-to-end solutions.

Copyright © 2025 Lavesh Katariya. All rights reserved.