Author -  Sai gowtham

How to check the node version Quickly

In this tutorial, we are going to learn about how to check the node.js version which is currently installed in your system.

Using the terminal

Inside the terminal, we can check the node version by running the node --version command or node -v.

node --version

Output:

v12.14.1

or

➜ node -v

v12.14.1

This above commands will work on both mac and windows based operating systems.

Accessing the node version programmatically

If you want to programmatically access the node version inside an app, you get it by using the process.version property.

app.js
const nodeVersion = process.version;

console.log(nodeVersion); // 'v12.14.1'

It returns the node version number in a string format.

Css Tutorials & Demos

How rotate an image continuously in CSS

In this demo, we are going to learn about how to rotate an image continuously using the css animations.

How to create a Instagram login Page

In this demo, i will show you how to create a instagram login page using html and css.

How to create a pulse animation in CSS

In this demo, i will show you how to create a pulse animation using css.

Creating a snowfall animation using css and JavaScript

In this demo, i will show you how to create a snow fall animation using css and JavaScript.

Top Udemy Courses

JavaScript - The Complete Guide 2023 (Beginner + Advanced)
JavaScript - The Complete Guide 2023 (Beginner + Advanced)
116,648 students enrolled
52 hours of video content
$14.99 FROM UDEMY
React - The Complete Guide (incl Hooks, React Router, Redux)
React - The Complete Guide (incl Hooks, React Router, Redux)
631,582 students enrolled
49 hours of video content
$24.99 FROM UDEMY
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
203,937 students enrolled
31.5 hours of video content
$14.99 FROM UDEMY