Reputation: 709
Where dateformat
module is located and where I can find it's api docs?
I see there is a package in npm with name dateformat
, but on my machine dateformat module is already installed. I'm unable to find it in nodejs official docs.
A'm I missing a whole branch of available modules in nodejs?
Looking forward for some explanation.
Upvotes: 2
Views: 179
Reputation: 7117
Date()
DocumentationWell Node.js JavaScript, so you can just use the Date()
documentation.
However the functions included within the Date API, is limited, which is why, as you mentioned, you may want to use an external library. A common, and very stable well supported choice would be moment.js
Upvotes: 1