- Node.js Tutorial
- NodeJS Home
- NodeJS Introduction
- NodeJS Setup
- NodeJS First App
- NodeJS REPL
- NodeJS Command Line
- NodeJS NPM
- NodeJS Callbacks
- NodeJS Events
- NodeJS Event-Loop
- NodeJS Event-Emitter
- NodeJS Global-Objects
- NodeJS Console
- NodeJS Process
- NodeJS Buffers
- NodeJS Streams
- Node.js File Handling
- Node.js File System
- Node.js Read/Write File
- Working with folders in Node.js
- HTTP and Networking
- Node.js HTTP Module
- Anatomy of an HTTP Transaction
- Node.js MongoDB
- MongoDB Get Started
- MongoDB Create Database
- MongoDB Create Collection
- MongoDB Insert
- MongoDB Find
- MongoDB Query
- MongoDB Sort
- MongoDB Delete
- MongoDB Update
- MongoDB Limit
- MongoDB Join
- Node.js MySQL
- MySQL Get Started
- MySQL Create Database
- MySQL Create Table
- MySQL Insert Into
- MySQL Select From
- MySQL Where
- MySQL Order By
- MySQL Delete
- MySQL Update
- MySQL Join
- Node.js Modules
- Node.js Modules
- Node.js Built-in Modules
- Node.js Utility Modules
- Node.js Web Module
- Node.js Advanced
- Node.js Debugger
- Node.js Scaling Application
- Node.js Packaging
- Node.js Express Framework
- Node.js RESTFul API
- Node.js Useful Resources
- Node.js Useful Resources
- Node.js Discussion
Node.js Setup
Setting up Node.js on your system is the first step to leveraging its power for building scalable, efficient applications. Follow the guide below to install Node.js and get started with your first application.
Prerequisites
- A computer with Windows, macOS, or Linux.
- Basic knowledge of JavaScript.
Steps to Set Up Node.js
1. Download Node.js
- Visit the Node.js official website.
- Download the LTS (Long-Term Support) version for stability or the Current version for the latest features.
2. Install Node.js
- Run the downloaded installer.
- Follow the on-screen instructions to complete the installation.
- Verify installation by opening a terminal and running:
node -v
npm -v
Output:
mkdir my-node-app
cd my-node-app
3. Set Up a Node.js Project
- Create a new directory for your project:
mkdir my-node-app
cd my-node-app
- Initialize a new Node.js project:
npm init -y
Output:
A package.json
file will be created with default settings.
4. Write Your First Node.js Application
- Create a file named
app.js
:
touch app.js
- Open the file in your code editor and add the following code:
5. Run the Application
- Start your server by running:
node app.js
- Open your browser and navigate to
http://localhost:3000
. You should see the message "Hello, Node.js!".
Summary
Node.js setup involves downloading and installing the runtime, initializing a project, and creating your first application. Once installed, you can start building efficient and scalable applications with ease. Whether you're creating APIs, web servers, or real-time apps, Node.js provides the foundation to bring your ideas to life.