bugl
bugl
HomeLearnPatternsPathsSearch
HomeLearnPatternsPathsSearch

Loading lesson path

Learn/Node.js

Node.js

Module Basics

Module Basics focused on Node.js Modules and related concepts.

Lesson 1

Node.js Modules

Modules are the building blocks of Node.js applications, allowing you to organize code into logical, reusable components. They help in:

Read lesson →Loading…
Lesson 2

Node.js ES Modules

ES Modules (ESM) is the official standard format for packaging JavaScript code for reuse.

Read lesson →Loading…
Lesson 3

Node.js NPM

NPM is a package manager for Node.js packages, or modules if you like.

Read lesson →Loading…
Lesson 4

Node.js package.json

package.json is a special file that describes your Node.js project.

Read lesson →Loading…
Lesson 5

Node.js NPM Scripts

NPM scripts are commands you define in your package.json file to automate tasks like:

Read lesson →Loading…
Lesson 6

Node.js Managing Dependencies

Dependency management is the process of tracking, installing, updating, and removing the external packages your application depends on.

Read lesson →Loading…
Lesson 7

Node.js Publish a Package

Publishing a package means making your Node.js module or project available for others to install and use via the npm registry.

Read lesson →Loading…