npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@master4n/temporal-transformer

v1.1.0

Published

Epoch convertor

Downloads

49

Readme

@master4n/temporal-transformer

Owner Badge Package License Package Downloads

Temporal Transformer is a library that converts epoch values to human-readable dates and dates to epoch value in both the user's local timezone and GMT. The project uses the moment-timezone library to handle date and time conversions and formatting.

Features

  • Automatically detects the type of epoch (seconds, milliseconds, microseconds, nanoseconds).
  • Converts epoch values to human-readable dates.
  • Converts human-readable dates to epoch values.
  • Displays dates in both the user's local timezone and GMT.
  • User-friendly output with clear assumptions about the epoch type.

Installation

  1. Library Installation:

    npm install --save-dev @master4n/temporal-transformer

Usage

  1. Method use to convert from epoch to date:

    import { convertEpoch, EpochToDate } from @master4n/temporal-transformer
    
    const epoch = 1622547800000; // Example epoch value
    
    const data: EpochToDate = convertEpoch(epoch); // Default format 'YYYY-MM-DD HH:mm:ss' used.
    const data: EpochToDate = convertEpoch(epoch, 'YYYY-DD-MM HH:mm:ss'); // User provided formatted output
  2. Method use to convert from date object to epoch:

    import { convertDateToEpoch, DateToEpoch } from @master4n/temporal-transformer
    
    const date = new Date(); // Any date.
    const timezone = 'America/New_York'
    
    const data: DateToEpoch = convertDateToEpoch(date); // Default user timezone used for formatting.
    const data: DateToEpoch = convertDateToEpoch(date, timezone); // User provided timezone used for formatting

Credits

These definitions were written by Master4Novice.