sonyflake
TypeScript icon, indicating that this package has built-in type declarations

1.1.2 • Public • Published

Sonyflake - A modern implementation Sonyflake on TypeScript

📖 Documentation

Installation

Node.js 10.16.0 or newer is required

Yarn

Recommended

yarn add sonyflake

NPM

npm i sonyflake

Example usage

import { Sonyflake, Epochs } from 'sonyflake';

const sonyflake = new Sonyflake({
  machineId: 2, // in range 2^16
  epoch: Date.UTC(2020, 4, 18, 0, 0, 0), // timestamp
});

const snowflake = sonyflake.nextId();

console.log(snowflake); // => "1211144891006978"

const deconstructSnowflake = sonyflake.deconstruct(snowflake);

console.log(deconstructSnowflake); // =>
// { timestamp: 1589832189861,
// 	machineId: 2,
// 	sequence: 0 }

Package Sidebar

Install

npm i sonyflake

Weekly Downloads

3,252

Version

1.1.2

License

MIT

Unpacked Size

11.8 kB

Total Files

8

Last publish

Collaborators

  • nopbongdem