1.1.3 • Published 4 years ago

egg-snowflake-js v1.1.3

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

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 versionegg 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