Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

set-tz

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

set-tz

sets the timezone for your short-lived node.js process in any OS-Windows too

  • 0.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
6.6K
decreased by-12.44%
Maintainers
1
Weekly downloads
 
Created
Source

set-tz

sets the timezone for your node.js process across all OSes

sample usage

const setTZ = require('set-tz')
setTZ('UTC')
// that's it

It will even convert between operating systems

const setTZ = require('set-tz')
setTZ('America/New_York')

This will set timezone to America/New_York in non-Windows environments. In Windows environments, it will set the timezone to Eastern Standard Time (because Windows doesn't respect IANA timezones).

Jest usage

It is very common you want to run all your tests in UTC no matter which timezone your computer is in. If you need that, then you can use a shortcut:

  "jest": {
    "setupFiles": ['set-tz/utc']
  }

Windows caveat

On windows, when you call setTZ() it effectively changes your whole OS timezone so beware-if you kill the process, you'll need to manually revert back after you're done-I am assuming you'r process is short-lived. If you don't kill your process, it will revert your original timezone back for you.

On all other OSes, it just sets process.env.TZ, so beware that the current process won't have the timezome set. Only it's children.

Keywords

FAQs

Package last updated on 05 Jun 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc