
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@smhg/date-time-zone
Advanced tools
Create and manipulate time zone specific dates as regular Date objects.

Create and manipulate time zone specific dates as regular Date objects.
(Abuses)Uses Intl and Proxy.
const { createDate, detectTimeZone } = require('@smhg/date-time-zone');
if (!detectTimeZone()) {
console.warn('Time zones not (fully) supported');
}
const timeZone = 'Europe/Berlin';
createDate({ timeZone }); // now
createDate(2019, 0, 1, { timeZone }); // start of 2019 in Berlin
const date = createDate({ timeZone });
date.setHours(0, 0, 0, 0);
console.log(date.toString()); // start of today in Berlin
When you need to work with a Date instance in another time zone, replace new Date with createDate and add an options object ({ timeZone: '...' }) as the last parameter.
All other usage is the same as regular Date objects, with manipulations (setDate, setHours, ...) happening in the specified time zone and toString() returning the date and time in the specified time zone.
FAQs
Create and manipulate time zone specific dates as regular Date objects.
The npm package @smhg/date-time-zone receives a total of 8 weekly downloads. As such, @smhg/date-time-zone popularity was classified as not popular.
We found that @smhg/date-time-zone demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.