I'm adapting a Norwegian gas prices flow to my use. It had a lot of UI stuff, which I have removed. And I have the function node that goes before the sending over MQTT down to this:
msg.topic = "Bensinstasjoner"
var kjede = msg.payload.brand;
var navn = msg.payload.name;
var tid = new Date(parseInt(msg.payload.prices.B95.lastUpdated)*1000);
msg.payload = kjede+' ' +navn+': '+msg.payload.prices.B95.price +' klokka '+tid;
return msg;
The line with the variable tid (time) gives me in a human readable form the time that the price was updated. But I would like to have an hour and minutes value instead. Can I use the Epoch time that comes in (for instance 1740980811053, which was about two hours and 30 minutes ago at the time of writing) in that function node to get that output, and if I can, how?
You can use days.js or moments.js in the function node. There are numerous examples on the forum of how to uses these libraries in a function node, using the setup tab.
Both libraries have similar syntax and have a diff function.
Since that is the epoch time in msec then in a function node you can get the current time, convert to msec and subract the two. Something like const diff = new Date().getTime() - parseInt(msg.payload.prices.B95.lastUpdated)*1000
Then you can easily convert to hours and minutes.
If you need help with that then searching for
How to convert milliseconds to hours and minutes using javascript
will soon provide a solution.