@lessworkjs/hashids

0.0.9 • Public • Published

Lessworkjs/Adonisjs Hashids

This is a hashids provider for the lessworkjs and adonisjs frameworks.

Installation

npm i @lessworkjs/hashids

Register the provider and alias in your config/app.js file.

const providers = [
  ...
  '@lessworkjs/hashids/providers/HashProvider',
];

Configuration

By default your key will be APP_KEY.

You can adjust the configurations by creating the file config/hashids.js

module.exports = {
  key: 'secret',
  length: 5,
  alaphabet: 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890',
};

Usage

See hashids for full usage information.

const Hashids = use('Hashids');

console.log(Hashids.encode(1));

Readme

Keywords

none

Package Sidebar

Install

npm i @lessworkjs/hashids

Weekly Downloads

0

Version

0.0.9

License

MIT

Unpacked Size

3.42 kB

Total Files

5

Last publish

Collaborators

  • askedio