tz-format alternatives and similar modules
Based on the "Date" category.
Alternatively, view tz-format alternatives based on common mentions on social networks and blogs.
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of tz-format or a related project?
README
tz-format
Format a date with timezone:
2015-11-30T10:40:35+01:00
Install
$ npm install --save tz-format
Usage
const format = require('tz-format');
format();
//=> '2015-11-30T10:40:35+01:00'
format(0);
//=> '2015-11-30T09:40:35+00:00'
format(new Date());
//=> '2015-11-30T10:40:35+01:00'
format(new Date(), 0);
//=> '2015-11-30T09:40:35+00:00'
format(new Date(2015, 11, 25, 11, 0, 0, 0), -1);
//=> '2015-12-25T09:00:00-01:00'
API
format([date], [offset])
input
Type: date
Default: new Date()
Date to be formatted.
offset
Type: number
Offset from UTC in hours.
License
MIT © Sam Verschueren
*Note that all licence references and agreements mentioned in the tz-format README section above
are relevant to that project's source code only.