bugl
bugl
HomeLearnPatternsPathsSearch
HomeLearnPatternsPathsSearch

Loading lesson path

Learn/Node.js

Node.js

Node.js Tutorial

Node.js Tutorial focused on Node.js Introduction and related concepts.

Lesson 1

Node.js Tutorial

Node.js is a free, open source tool that lets you run JavaScript outside the web browser.

Read lesson →Loading…
Lesson 2

Node.js Introduction

- How to install and run Node.js - Core concepts like modules and the event loop - How to build web servers and APIs - Working with databases and files - Deploying Node.js applications

Read lesson →Loading…
Lesson 3

Node.js Get Started

Open your terminal/command prompt and type:

Read lesson →Loading…
Lesson 4

Node.js JavaScript Requirements

If you're new to JavaScript, don't worry!

Read lesson →Loading…
Lesson 5

Node.js vs Browser

Node.js and browsers both run JavaScript, but they have different environments and capabilities.

Read lesson →Loading…
Lesson 6

Node.js Command Line Usage

Node.js provides a powerful command line interface (CLI) that allows you to run JavaScript files, manage packages, debug applications, and more.

Read lesson →Loading…
Lesson 7

Node.js V8 Engine

The V8 engine is Google's open-source JavaScript engine, used by Chrome and Node.js.

Read lesson →Loading…
Lesson 8

Node.js Architecture

Node.js uses a single-threaded, event-driven architecture that is designed to handle many connections at once, efficiently and without blocking the main thread.

Read lesson →Loading…
Lesson 9

Node.js Event Loop

The event loop is what makes Node.js non-blocking and efficient.

Read lesson →Loading…