egg-snowflake-js

1.1.3 • Public • Published

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

/egg-snowflake-js/

    Package Sidebar

    Install

    npm i egg-snowflake-js

    Weekly Downloads

    6

    Version

    1.1.3

    License

    MIT

    Unpacked Size

    9 kB

    Total Files

    8

    Last publish

    Collaborators

    • biubiukevin