How to generate timestamp unix epoch format nodejs?

后端 未结 7 1727
感动是毒
感动是毒 2021-01-31 06:54

I am trying to send data to graphite carbon-cache process on port 2003 using

Ubuntu terminal:

echo "test.average 4 `date +%s`" | nc -q0 127.0.0.1         


        
7条回答
  •  长情又很酷
    2021-01-31 07:41

    Post ECMAScript5 you can use:

    Math.floor(Date.now() / 1000);
    

    which generates epoch timestamp in seconds.

提交回复
热议问题