DEV Community

Rittwick Bhabak
Rittwick Bhabak

Posted on • Updated on

Node.js Crash Course - Part 1 - Introduction and Set Up

1

To check node version in my computer: node -v
To start node console: node

Running a javascript file 'test.js'

//filename test.js
const name = 'rittwick'
console.log(name)
Enter fullscreen mode Exit fullscreen mode

Command to run this file: node test

Top comments (0)