Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shinnn/get-tz-ids
Get an array of time zone IDs from IANA time zone database
https://github.com/shinnn/get-tz-ids
Last synced: 27 days ago
JSON representation
Get an array of time zone IDs from IANA time zone database
- Host: GitHub
- URL: https://github.com/shinnn/get-tz-ids
- Owner: shinnn
- License: mit
- Created: 2016-06-16T05:25:32.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-06-16T05:37:53.000Z (over 8 years ago)
- Last Synced: 2024-10-05T08:47:39.142Z (about 1 month ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# get-tz-ids
[![NPM version](https://img.shields.io/npm/v/get-tz-ids.svg)](https://www.npmjs.com/package/get-tz-ids)
[![Build Status](https://travis-ci.org/shinnn/get-tz-ids.svg?branch=master)](https://travis-ci.org/shinnn/get-tz-ids)
[![Coverage Status](https://img.shields.io/coveralls/shinnn/get-tz-ids.svg)](https://coveralls.io/github/shinnn/is-gist-starred?branch=master)
[![Dependency Status](https://david-dm.org/shinnn/get-tz-ids.svg)](https://david-dm.org/shinnn/get-tz-ids)
[![devDependency Status](https://david-dm.org/shinnn/get-tz-ids/dev-status.svg)](https://david-dm.org/shinnn/get-tz-ids#info=devDependencies)A [Node](https://nodejs.org/) module to get an array of time zone IDs form [IANA Time Zone Database](https://www.iana.org/time-zones)
```javascript
const getTzIds = require('get-tz-ids');getTzIds().then(ids => {
ids; //=> ['Africa/Abidjan', 'Africa/Accra', 'Africa/Addis_Ababa', 'Africa/Algiers', ...]
});
```## Installation
[Use npm.](https://docs.npmjs.com/cli/install)
```
npm install get-tz-ids
```## API
```javascript
const getTzIds = require('get-tz-ids');
```### getTzIds([*options*])
*options*: `Object` (directly passed to [`Request`](https://github.com/request/request#requestoptions-callback))
Return: [`Promise`](http://www.ecma-international.org/ecma-262/6.0/#sec-promise-constructor)It fetches and parses the latest [`zone.tab`](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) file form and returns a promise for an array of alphabetically sorted time zone IDs.
## Related project
* [get-tz](https://github.com/shinnn/get-tz) - Get all time zone info instead of IDs only
## License
Copyright (c) 2016 [Shinnosuke Watanabe](https://github.com/shinnn)
Licensed under [the MIT License](./LICENSE).