npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

generate-timezone-json

v1.0.0

Published

Generate JSON file containing timezones from a tab file or the official IANA database

Downloads

269

Readme

Generate Time Zone JSON

npm npm npm github

Generate a JSON file containing time zones from the official IANA Database or your own zone.tab file 🚀

npx generate-timezone-json

Use case: This script is specifically useful when you need a JSON file with timezones information. Maybe you need this information to be synced with your server which uses a tab file (i.e., tab-separated values). Or maybe you just need a static persistent file generated from the latest official time zones database. In these cases, this script is what you need. For other use cases, see "Other Options" section below.

Please report issues found or suggestions in the project issues page

Recommendation: For performance, I recommend you don't generate the JSON file multiple times in run time. Determine a single point in your app/system's life cycle when it is best to do this (e.g., pre-build time or once when requested for the first time).

Requirement: This is a lightweight node.js script, and only requires that you have node installed.

Usage using NPX

Running the following will automatically download and cache the latest version, so there is no need to permanently install anything.

  • npx generate-timezone-json to generate timezones.json from official IANA Database
  • npx generate-timezone-json <filename> to generate timezones.json from a TAB file,
    • for example, using a file named "zone.tab": generate-timezone-json zone.tab

Important Note: Currently, the structure of the generated JSON file will be different depending on the source (i.e, zone.tab or the IANA time zones database). This will be addressed in this github issue.

Installation with NPM

If you have a need to permanently install the package do the following:

  • Install locally: npm i generate-timezone-json
  • Install globally: npm i -g generate-timezone-json

After installation, you can use npx generate-timezone-json.

Download from Github

You can also download the latest releases in Github. After downloading, extract the package, and run the unpacked JS script it with node: node index.js.

Other options

This package is specifically useful if you need a JSON file with time zones information. I did not find anything like it but it uses a couple of other packages under the hood. The following may be more appropriate for you:

  1. @vvo/tzdb - a feature-packed time zones library that automatically releases updates when official time zones are changed
  2. shinnn/parse-zonetab - a lightweight parser of zone.tab files

Planned features (not yet implemented)

  1. Specify an output file path with option --output
  2. Uniform JSON structure for all sources
  3. Release type definitions

Please report issues found or suggestions in the project issues page