How to generate timestamp unix epoch format nodejs?

后端 未结 7 1696
感动是毒
感动是毒 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:28

    In typescript, simply run Math.floor(new Date().getTime() / 1000)

    > Math.floor(new Date().getTime() / 1000)
    1581040613
    

    I'm currently running Node 13.7.0

提交回复
热议问题