0.0.9 • Published 6 years ago

@lessworkjs/hashids v0.0.9

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

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));
0.0.9

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago