All the Tags in this Category

Node Js Installation

About Nodejs and Installation

Node Js

Node.js lets you run JavaScript outside the browser, primarily for building back-end services, tools, or full-stack applications.

Node Installation

Check version

node -v

npm -v

nvm -v

Option 1: Install from Official Website

  • Go to: https://nodejs.org
  • You’ll see two options:
    • LTS (Long-Term Support) – Stable, recommended for most users
    • Current – Latest features, but may be less stable.
  • Download and install the LTS version.

This installs both Node.js and npm (Node Package Manager).

[Read More]

01-JS Fundamentals | Javascript introduction

JS introduction and Variable declaration and scope

Introduction to JS

What is JavaScript?

  • JavaScript is a dynamic, weakly typed programming language which is compiled at runtime.
  • It can be executed as part of a webpage in a browser or directly on any machine (“host environment”).
  • JavaScript was created to make webpages more dynamic (e.g. change content on a page directly from inside the browser).
[Read More]