1.3.0 ā€¢ Published 2 years ago

@ultirequiem/timezones v1.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

timezones

codecov deno doc

A list with all the JavaScript possible timezones.

Based on this StackOverflow Question

Usage

The API is the same on all this platforms āœ”ļø

Deno šŸ¦•

import {
  randomTimeZone,
  timeZones,
} from "https://deno.land/x/timezones/mod.ts";

console.log(`My timezone is ${randomTimeZone()}.`);

const date = new Date();

for (const timeZone of timeZones) {
  console.log(timeZone, date.toLocaleString("en-US", { timeZone }));
}

Node.js šŸ¢šŸš€

import { randomTimeZone, timeZones } from "@ultirequiem/timezones";

Browser šŸŒ

You can use any CDN šŸ”„

Eg šŸ‘‰ ESM ā†”ļø SkyPack šŸ†š Script Tag ā†”ļø JSDelivr

Documentation

Is hosted on Deno Doc šŸ“š

For more examples checkout Timero and the CLI Tool.

CLI

Install

  • Deno šŸŽƒ
deno install https://deno.land/x/timezones/timezones.ts
  • Node.js šŸ¼
npm install -g @ultirequiem/timezones

Usage

timezones --help

It includes list, random and a fuzzy search command!

A binary for multiple platforms is provided too!

Video Showcase

Support

Open an Issue, I will check it a soon as possible šŸ‘€

If you want to hurry me up a bit send me a tweet šŸ˜†

Consider supporting me on Patreon if you like my work šŸ™

Don't forget to start the repo ā­

Notes

This was done mainly because Timero.

Authors

Eliaz Bobadilla - Creator and Maintainer šŸ’Ŗ

See also the full list of contributors who participated in this project āœØ

Versioning

We use Semantic Versioning. For the versions available, see the tags šŸ·ļø

Licence

Licensed under the MIT License šŸ“„

1.3.0

2 years ago

1.2.0

2 years ago

1.2.2

2 years ago

1.2.1

2 years ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

0.1.0

2 years ago