惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
博客园 - 司徒正美
小众软件
小众软件
H
Help Net Security
博客园 - 聂微东
宝玉的分享
宝玉的分享
Jina AI
Jina AI
酷 壳 – CoolShell
酷 壳 – CoolShell
阮一峰的网络日志
阮一峰的网络日志
M
MIT News - Artificial intelligence
博客园 - 【当耐特】
U
Unit 42
大猫的无限游戏
大猫的无限游戏
Apple Machine Learning Research
Apple Machine Learning Research
S
SegmentFault 最新的问题
腾讯CDC
MongoDB | Blog
MongoDB | Blog
云风的 BLOG
云风的 BLOG
J
Java Code Geeks
I
InfoQ
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Martin Fowler
Martin Fowler
博客园 - 三生石上(FineUI控件)
Vercel News
Vercel News

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
🚀 Getting Started with Node.js – from “What is this?” to ...
Ramanand Thakur · 2026-06-03 · via DEV Community

Node.js lets us run JavaScript outside the browser. In this guide, we’ll install Node, learn the terminal, explore npm, build a real web server, understand event-driven programming, and serve static files — all before jumping into Express.js 🔥


🧠 Why Node.js feels magical

In the previous article, we mentioned that JavaScript was designed to run only in browsers. Then Node.js came along, and suddenly everyone was like, “Hold on… JavaScript can run on servers too?!”

Until then, JavaScript meant:

  • button clicks
  • animations
  • form validation
  • frontend headaches 😅

But with Node.js, suddenly JavaScript could:

  • read files
  • create APIs
  • talk to databases
  • stream videos
  • run backend servers

In this article, I’ll walk you through the exact beginner path I wish someone had shown me earlier.

By the end, you’ll:

✅ Install Node.js
✅ Understand the terminal without fear
✅ Learn npm properly
✅ Build your own Node server
✅ Understand routing
✅ Serve HTML/CSS files
✅ Be fully ready for Express.js


📌 Prerequisites

You only need:

  • Basic JavaScript knowledge
  • A laptop 🙂
  • Node.js v20+ recommended
  • ☕ Coffee (strongly recommended)

🌍 What Exactly is Node.js?

Node.js is a JavaScript runtime built on Chrome’s V8 engine.

That means:

It allows JavaScript to run outside the browser.

Instead of running only inside Chrome or Firefox, JavaScript can now run directly on your computer or server.


📊 Browser JavaScript vs Node.js

Browser Javascript Vs Node.js


💻 Getting Node.js

🟢 Step 1: Download Node

Visit:

Download the LTS version.

💡 Production note: Always prefer the LTS (Long Term Support) version for stability.


🟢 Step 2: Verify Installation

Open terminal and run:

node -v

Enter fullscreen mode Exit fullscreen mode

Example output:

v20.11.0

Enter fullscreen mode Exit fullscreen mode

Now check npm:

npm -v

Enter fullscreen mode Exit fullscreen mode

Example:

10.2.4

Enter fullscreen mode Exit fullscreen mode

Boom 💥 Node installed successfully.


🖥️ Using the Terminal

We all were scared of it initially 😄

Most beginners avoid the terminal initially.

I did too.

Huge mistake.

The terminal is basically your direct communication line with the operating system.

Think of it like this:

GUI Terminal
Clicking buttons Typing commands
Slower Faster
Beginner friendly Developer powerful

📂 Essential Terminal Commands

Windows

Use:

  • PowerShell
  • Windows Terminal

macOS/Linux

Use:

  • Terminal app

📌 Most Useful Commands

# Show current folder
pwd

# List files
ls

# Change folder
cd folder-name

# Create folder
mkdir my-project

# Create file
touch app.js

Enter fullscreen mode Exit fullscreen mode


📊 Terminal Workflow

Terminal workflow


🛠️ Editors (VS Code or Claude)

You technically can write Node code in Notepad.

But please don’t torture yourself 😭.


🟦 VS Code (Recommended)

Visual Studio Code

Why developers love it:

  • Fast
  • Free
  • Great extensions
  • Git integration
  • Built-in terminal
  • Excellent Node support

🔌 Extensions I Recommend

Extension Why
ESLint Catch JavaScript mistakes
Prettier Auto formatting
Thunder Client API testing
GitLens Git superpowers

🤖 Claude Editor

Many developers also use:

Especially for:

  • debugging help
  • refactoring
  • documentation generation
  • learning concepts faster
  • vibe coding (We'll discuss this in detail in future articles)

But honestly?

VS Code + Node is still the gold standard for most beginners.


📦 Understanding npm

npm stands for:

Node Package Manager

This is where Node becomes insanely powerful.

npm lets you install reusable packages instead of reinventing the wheel every time.


🧱 Create Your First Project

mkdir node-demo
cd node-demo

Enter fullscreen mode Exit fullscreen mode

Initialize project:

npm init -y

Enter fullscreen mode Exit fullscreen mode

This creates:

package.json

Enter fullscreen mode Exit fullscreen mode


📄 What is package.json?

Think of it like:

The Aadhaar card or identity card of your project 😄

It contains:

  • project name
  • dependencies
  • scripts
  • version
  • metadata

📌 Example package.json

{
  "name": "node-demo",
  "version": "1.0.0",
  "main": "app.js"
}

Enter fullscreen mode Exit fullscreen mode


📊 How npm Works

NPM workflow


🚀 A Simple Web Server with Node.js

Now the fun part begins 🔥


👋 Hello World Server

Create:

app.js

Enter fullscreen mode Exit fullscreen mode


✅ Minimal Node Server

// Node.js v20

// Import Node's built-in HTTP module
const http = require('http');

// Create server
const server = http.createServer((request, response) => {

  // Send HTTP status code
  response.writeHead(200, {
    'Content-Type': 'text/plain'
  });

  // Send response body
  response.end('Hello World from Node.js 🚀');
});

// Start listening on port 3000
server.listen(3000, () => {

  // Callback runs once server starts
  console.log('Server running at http://localhost:3000');

});

Enter fullscreen mode Exit fullscreen mode


▶️ Run the Server

node app.js

Enter fullscreen mode Exit fullscreen mode

Visit:

http://localhost:3000

Enter fullscreen mode Exit fullscreen mode

And there it is 🎉

Your first Node web server.


⚡ Understanding Event-Driven Programming

This is THE core Node concept.

And honestly?

This is where many folks get confused initially.


🧠 Traditional Programming

Traditional systems often wait for one task to finish before moving to the next.

Like standing in a railway booking queue 🚉.

One person at a time.


🚀 Node’s Event-Driven Model

Node works differently.

Instead of blocking everything:

  • it listens for events
  • processes callbacks
  • handles async tasks efficiently

📊 Event Loop Explained

Event loop diagram


📌 Simple Event Example

// Node.js Events Module

const EventEmitter = require('events');

// Create event emitter instance
const emitter = new EventEmitter();

// Listen for custom event
emitter.on('orderPlaced', () => {

  console.log('🍕 Pizza order received');

});

// Emit event
emitter.emit('orderPlaced');

Enter fullscreen mode Exit fullscreen mode

Output:

🍕 Pizza order received

Enter fullscreen mode Exit fullscreen mode


🧭 Routing in Node.js

Routing means:

Sending different responses for different URLs.

Example:

URL Response
/ Home page
/about About page
/contact Contact page

✅ Basic Routing Example

// app.js

const http = require('http');

const server = http.createServer((req, res) => {

  // Homepage route
  if (req.url === '/') {

    res.writeHead(200, {
      'Content-Type': 'text/plain'
    });

    res.end('🏠 Welcome Home');

  }

  // About page route
  else if (req.url === '/about') {

    res.writeHead(200, {
      'Content-Type': 'text/plain'
    });

    res.end('ℹ️ About Us');

  }

  // Fallback route
  else {

    res.writeHead(404, {
      'Content-Type': 'text/plain'
    });

    res.end('❌ Page Not Found');

  }

});

// Start server
server.listen(3000, () => {
  console.log('Server started');
});

Enter fullscreen mode Exit fullscreen mode


📊 How Routing Works

Routing workflow


📂 Serving Static Resources

Static resources include:

  • HTML
  • CSS
  • JavaScript
  • Images

Without this, websites would look like 1998 😅.


📁 Project Structure

project/
│
├── app.js
├── public/
│   ├── index.html
│   └── style.css

Enter fullscreen mode Exit fullscreen mode


✅ Serve HTML File

// Node.js v20

const http = require('http');
const fs = require('fs');

const server = http.createServer((req, res) => {

  // Read HTML file
  fs.readFile('./public/index.html', (error, data) => {

    // Handle file read errors
    if (error) {

      res.writeHead(500);

      res.end('Internal Server Error');

      return;
    }

    // Send HTML response
    res.writeHead(200, {
      'Content-Type': 'text/html'
    });

    res.end(data);

  });

});

server.listen(3000);

Enter fullscreen mode Exit fullscreen mode


📄 Example HTML

<!DOCTYPE html>
<html>

<head>
  <title>Node Demo</title>
</head>

<body>

  <h1>🚀 Node.js Server</h1>

</body>
</html>

Enter fullscreen mode Exit fullscreen mode


🎨 Serve CSS File

// Simplified CSS serving example

if (req.url === '/style.css') {

  fs.readFile('./public/style.css', (err, data) => {

    res.writeHead(200, {
      'Content-Type': 'text/css'
    });

    res.end(data);

  });

}

Enter fullscreen mode Exit fullscreen mode


🤯 What Broke When I Tried This

TBH, many things 😂


❌ Mistake 1: Wrong File Path

ENOENT: no such file or directory

Enter fullscreen mode Exit fullscreen mode

✅ Fix

Always verify folder structure carefully.


❌ Mistake 2: Port Already in Use

EADDRINUSE

Enter fullscreen mode Exit fullscreen mode

✅ Fix

Another app is using the same port.

Simply, change the port number. (3000 to something else which is not getting used 😄)


❌ Mistake 3: Browser Keeps Loading Forever

Usually happens because:

res.end()

Enter fullscreen mode Exit fullscreen mode

was forgotten.


📈 Why Express.js Was Needed

After writing enough raw Node servers, developers realized:

“Dude… this is becoming repetitive.”

Things became messy quickly:

  • manual routing
  • manual headers
  • repetitive file handling
  • middleware chaos

That’s exactly why Express.js became popular.


📊 Raw Node vs Express

Node vs Express

Express dramatically reduced boilerplate code.


☕ Caffeine Scale

Topic Complexity
Installing Node
npm basics ☕☕
Routing ☕☕
Event loop ☕☕☕☕

🎯 Onward to Express.js

Now you understand:

✅ Node installation
✅ Terminal basics
✅ npm
✅ HTTP servers
✅ Event-driven programming
✅ Routing
✅ Static files

You’re officially ready for:

🚀 Express.js

But don’t worry — if you missed anything, we’ll come back to some of these topics individually and go way deeper 🚀

And trust me…

Once you use Express routing after raw Node routing, it feels like upgrading from manual gear driving to automatic 😄


📌 Key Takeaways

  • Node.js lets JavaScript run outside browsers
  • npm powers the massive Node ecosystem
  • Node uses event-driven architecture
  • You can build web servers with built-in modules
  • Routing and static file serving are fundamental backend concepts
  • Express simplifies all of this beautifully

📢 What’s Next?

In the next article we’ll cover:

  • Scaffolding
  • Installing Express
  • Request/response lifecycle
  • Middleware

💬 Your Turn

What confused you most when learning Node?

  • npm?
  • terminal?
  • async programming?
  • routing?

And did you also use incorrect file path at least once? 😅


📣 Call To Action

If this article helped you:

  • ⭐ Bookmark it
  • 🔁 Share with a beginner developer
  • 🚀 Build your own tiny Node server today
  • 👨‍💻 Follow for more backend deep dives