nodejsHow to get current timestamp
Usage example
const ts = Date.now();
console.log(ts);
output
1660209069059
Related
More of Nodejs
- How to read stream to Buffer
- How to write file
- How to set content type in HTTP server
- How to POST JSON data
- How to send message to client from websocket server
- How to send JSON response from HTTP server
- How to convert JSON to Buffer
- How to post url-encoded data
- How to run Node.js script
- How to read stream to string
See more codes...