A simple and lightweight NPM package for working with time zones. This package provides a human friendly timezone selector and utility functions for timezones.
You can install the package using npm:
npm install @neetohq/timezones
import { NeetoTimezoneSelector } from "@neetohq/timezones";
new NeetoTimezoneSelector(document.getElementById("elementId"));
You can pass options as the second parameter to configure the timezone selector component.
- elementId: ID for the NeetoTimezoneSelector. By default the ID will be
timezone-selector
- className: Custom classes that can be added to the component.
- onChange: Function to be called when the timezone selector changes.
- position: Position in which the selector should open in. Available options:
top
,bottom
. Default position isbottom
. - onHourFormatChange: Function to be called when the time format changes.
import { NeetoTimezoneSelector } from "@neetohq/timezones";
new NeetoTimezoneSelector(document.getElementById("elementId"), {
className: "custom-selector-class",
onChange: (timezone) => {
console.log(timezone);
},
elementId: "custom-selector-element",
position: "top",
});
import { ianaTimezoneToHumanReadable } from "@neetohq/timezones";
ianaTimezoneToHumanReadable("Asia/Calcutta") // => Indian Standard Time
ianaTimezoneToHumanReadable("America/New_York") // => Eastern Standard Time
ianaTimezoneToHumanReadable("Europe/Berlin") // => Central Standard Time
git clone [email protected]:neetohq/neeto-timezones.git
cd neeto-timezones/js
pnpm install
pnpm dev
- Bump
package.json
version - Commit and push
pnpm build && pnpm publish