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

@magic8bot/timebucket

v1.1.0

Published

This is a typescript fork of [this repo](https://github.com/carlos8f/node-timebucket)

Downloads

19

Readme

This is a typescript fork of this repo

TimeBucket

Group timestamps into "buckets" by applying a granularity to a discrete value

A timebucket is a type of time domain which combines a size identifier (granularity) with a discrete value, and can be stored as a compact string.

Timebuckets are useful for grouping timestamps together using a particular granularity (such as groups of 30 minutes), as an aid for graphing or map/reduce-ing time-series data.

Also, timebuckets can serve as a neutral format between which UNIX timestamps (seconds before or after 1970) and millisecond timestamps (as used in JavaScript) can be converted, and stored in a complete way (with granularity attached).

Anatomy of a timebucket

A timebucket consists of:

  1. a size spec (string) which consists of:
  2. (optional) an unsigned multiplier (default: 1)
  3. a granularity identifier, i.e. s for seconds
  4. a signed value, i.e. number of seconds, after or before epoch year (1970)

Format examples

  • 8h-491 - time (within 8 hours) of first moonwalk (1969-07-21 02:56 UTC)
  • y43 - the year 2013

API

Construction

The timebucket module exports a factory function. It supports the following argument combinations:

  • timebucket() - build timebucket with millisecond granularity applied to current date
  • timebucket(size) - build from specific size (string identifier, see list below) applied to current date
  • timebucket(milliseconds) - build from milliseconds since 1970
  • timebucket(size, value) - build from specific size and value
  • timebucket(date) - build from date object with millisecond granularity
  • timebucket(str) - build from string representation

Resizing

To resize a bucket, call resize(newSize):

console.log(timebucket('y').resize('30m') + '')
// '30m753360'

Conversion

Conversion methods:

  • toString() - convert to string representation
  • toJSON() - same as toString()
  • toMilliseconds() - convert to millisecond UNIX time offset
  • toDate() - convert to Date object

API examples

var timebucket = require('timebucket')

// defaults to current milliseconds after unix epoch
console.log(timebucket() + '')
// 'ms1369656669680'

// default size (milliseconds) and value
console.log(timebucket(1369601120380) + '')
// 'ms1369601120380'

// specific size (seconds) and value
console.log(timebucket('s', 1369601125) + '')
// 's1369601125'

// resize to year
console.log(timebucket().resize('y') + '')
// 'y43'

// use current time, specific size
console.log(timebucket('30m') + '')
// '30m760920'

// create timebucket from current seconds after unix epoch, and add 5
console.log(timebucket('s').add(5) + '')
// 's1369656674'

// from date object
console.log(timebucket(new Date()) + '')
// 'ms1369656669686'

// from string representation
console.log(timebucket('y43') + '')
// 'y43'

// access granularity and value as properties
var t = timebucket()
console.log(t.size.value, t.size.granularity, t.value)
// 1 'ms' 1369656669686

// resize
console.log(timebucket('y').resize('30m') + '')
// '30m753360'

Granularity identifiers

  • ms - milliseconds
  • s - seconds
  • m - minutes
  • h - hours
  • d - days
  • w - weeks
  • M - months
  • y - years

Integer storage

Timebuckets also have a 64-bit integer representation which contains granularity metadata, while maintaining sortability with buckets of the same granularity.

var timebucket = require('timebucket')
var num = timebucket('8h-491').toNumber()
// toNumber() returns a 64-bit integer representation as a Number
console.log(num)
// -49133
var bucket = timebucket.fromNumber(num)
// fromNumber() takes the result of toNumber(), and returns a timebucket instance:
console.log(bucket.toString())
// 8h-491