How To Get Current Date And Time In Node.js

Websolutionstuff | Sep-01-2021 | Categories : jQuery Node.js

In this example we will see how to get current date and time in Node.js application. In Node.js date and time are handled with the Javascript Date object. It is loaded by default and requires no import of modules.

Also you can get current date, month, year, hour, minutes & seconds in Node.js. In Node.js you can get the current date-time formatted as YYYY-MM-DD hh:mm:ss, YYYY-MM-DD, DD-MM-YYYY etc.

And I will share example about how to get the current timestamp and how to get date-time from a given timestamp.

Example 1 :

The current date and time can be fetched by creating a new Date object.

var express = require('express');
var app = express();
  
var date_time = new Date();
console.log(date_time);
  
app.listen(3000);

 

Output : 

2021-08-28T08:39:45.558Z

 

 

Example 2 :

Now in this example we will see different methods and get output in YYYY-MM-DD hh:mm:ss format.

const express = require("express")
const app = express()

let date_time = new Date();

// get current date
// adjust 0 before single digit date
let date = ("0" + date_time.getDate()).slice(-2);

// get current month
let month = ("0" + (date_time.getMonth() + 1)).slice(-2);

// get current year
let year = date_time.getFullYear();

// get current hours
let hours = date_time.getHours();

// get current minutes
let minutes = date_time.getMinutes();

// get current seconds
let seconds = date_time.getSeconds();

// prints date in YYYY-MM-DD format
console.log(year + "-" + month + "-" + date);

// prints date & time in YYYY-MM-DD HH:MM:SS format
console.log(year + "-" + month + "-" + date + " " + hours + ":" + minutes + ":" + seconds);

 

Output :

2021-08-28

2021-08-28 14:11:21

 

Example 3 :

Get current timestamp using Date.now() method. Note that this method returns the timestamp in milliseconds. To get the timestamp as seconds we can divide it by 1000.

let timestamp = Date.now();

// timestamp in milliseconds
console.log(timestamp);

// timestamp in seconds
console.log(Math.floor(timestamp/1000));

 

Output :

1630142227639

1630142227

 

 

Example 4 : 

In this example we will get Date and Time from Timestamp. And timestamps are specified as milliseconds.if the given timestamp is in seconds you will need to convert the same to milliseconds by multiplying with 1000.

// current timestamp in milliseconds
let ts = Date.now();

let date_time = new Date(ts);
let date = date_time.getDate();
let month = date_time.getMonth() + 1;
let year = date_time.getFullYear();

// prints date & time in YYYY-MM-DD format
console.log(year + "-" + month + "-" + date);

 

Output : 

2021-08-28

 

 


 

You might also like :

 

Recommended Post
Featured Post
How To Get Current Month Records In MySQL
How To Get Current Month Recor...

In this tutorial, we will see how to get current month records in MySQL. For data analysis and reporting, we need more d...

Read More

Feb-08-2022

How to Install Imagick PHP Extension on Ubuntu 22.04
How to Install Imagick PHP Ext...

Hey there, fellow developers! Are you looking to enhance your PHP applications with powerful image-processing capabiliti...

Read More

Mar-06-2024

Export Buttons In Datatable
Export Buttons In Datatable

In this tutorial i will show you How To Add Export Buttons In Datatable, If you want to export DataTable data...

Read More

Sep-02-2020

How To Send Email using Node.js
How To Send Email using Node.j...

Hello Friends, In this tutorial we will learn how to send email using node.js app. In this tutorial we will see send...

Read More

Jul-28-2021