Skip to content

mstar-kk/egg-snowflake-js

Repository files navigation

egg-snowflake-js

NPM version build status Test coverage David deps Known Vulnerabilities npm download

Install

$ npm i egg-snowflake-js --save

Dependencies egg version

egg-snowflake-js version egg 1.x
1.x 😁

Usage

// {app_root}/config/plugin.js
exports.snowflake = {
  enable: true,
  package: 'egg-snowflake-js',
};

Configuration

// {app_root}/config/config.default.js
exports.snowflake = {
  client: {
    workerId: 1,    //1 to 31 int number. If do not set workerId, it will set a random number from 1 to 31
    machineId: 1    //1 to 31 int number. If do not set machineId, it will set a int number(1 to 31) from hostname lenth
  }
};

see config/config.default.js for more detail.

Example

//{app_root}/app/controller/index.js
async index() {
  const app = this.app;
  const flakeId = app.snowflake.next();
  console.log(flakeId)
}

Questions & Suggestions

Please open an issue here.

License

MIT

About

snowflake plugin for egg

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published