alias-key-gen
TypeScript icon, indicating that this package has built-in type declarations

0.1.2 • Public • Published

Alias Key Generator

This package enables the generation of unique alias name . The default UID generated are considred for SQL keywords to avoid query conflict. End user can update the options to configure as per the need

Installation

You can install this package via npm:

npm i alias-key-gen

Usage

import { AliasKeyGen } from "alias-key-gen";

const aliasKeyGen = new AliasKeyGen({
    charString: "abcdfghjkmpqxz",
    extendNumberSequenceSuffix: {
        enableNumSeq: true,
        maxNumberSeq: 9
    },
    startSequence: "ab5"
});
console.log(aliasKeyGen.next());
console.log(aliasKeyGen.next());
# Output is
a
b

Contribution

Contributions are welcome! If you encounter issues or have suggestions for improvements, feel free to open an issue or submit a pull request on GitHub.

License

This package is licensed under the MIT License.

Contact

For inquiries or support, please contact contact@draviavemal.com.

Package Sidebar

Install

npm i alias-key-gen

Weekly Downloads

8

Version

0.1.2

License

MIT

Unpacked Size

14 kB

Total Files

7

Last publish

Collaborators

  • draviavemal