time-pack
v1.0.8
Published
Need a scheduler that isn't cron or Windows based? time-pack has that in node.js. WIP
Readme
time-pack
Need a scheduler that isn't cron or Windows based? time-pack has that in node.js. WIP
Overview
time-pack is an ultra-simplified way to handle dates and times.
Features
- Feature 1: Gets a current date string for the four time zones in the USA: Pacific, Mountain, Central, Eastern.
Installation
Install the package using npm:
npm install time-pack
Usage
const t = require("time-pack");
console.log(t.GetCurrentDate("Eastern"));Or:
const { GetCurrentDate } = require("time-pack");
console.log(GetCurrentDate("Eastern"));Output will be today's current date according to Eastern time.
