Code Monkey home page Code Monkey logo

node-snowflake's Introduction

node-snowflake

node-snowflake is a node.js clone for twitter snowflake.

How to use

node-snowflake supply two way to generate ID.

Get new ID from REST server.

Run a ID generater Server.

// only run simple http server
require('node-snowflake').Server(3001);

Try to GET ID from /next_id

curl http://localhost:3001/next_id?worker_id={optional}&data_center_id={optional}&sequence={optional}

# response : {"id":"439658373735124992"}

Generate ID in the process.

// only run snowflake nextId
var snowflake = require('node-snowflake').Snowflake;
var id = snowflake.nextId(); // use default set

or

var snowflake = require("node-snowflake").Snowflake;
snowflake.init({worker_id : 1, data_center_id : 1, sequence : 0});
var id = snowflake.nextId();

console.log(id);

See examples/example.js

node-snowflake's People

Contributors

kurten avatar

Watchers

James Cloos avatar PuHsiu, Chiang avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.