JSPM

rayid

2.1.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 20
  • Score
    100M100P100Q51358F
  • License MIT

RayID generator.

Package Exports

  • rayid
  • rayid/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (rayid) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

RayID

RayID is a generated code that we use to track logs, posts or events. You can generate your own rayid, but we made your job easier!

In this instructure you will learn about how to use this package in your apps.

Table of content

Installation

How to install RayID? To install this package, use NPM.

$ npm i rayid

Config

So, import the package.

// ESM 6 and higher
import RayID from "rayid";

// ESM 5 and lower
const RayID = require("rayid");

Now create your instance with what kind of rayid you want.

  • digit: Numbers
  • lower: Alphabet in lower case.
  • upper: Alphabet in upper case.
  • symbol: Symbols for password and stuff.

No type means all combined togather.

const ray = new RayID("lower");

Methods

Only one method! gen().

gen()

in gen() just say the length.

There is no limit :)

const r = ray.gen(50);
console.log(r); // zpciqivbkgoubrurrnozqhcdzlerjkllgtwbqbhllrxcremprd

Or do it inside.

console.log(ray.gen(50)); // clherhvpkhwynhqhzluozionumnjqgjroeiymgqvlaknzjtdic

Examples

Create common instances.

const ray = new RayID(); // All values
const srt = new RayID("lower"); // Loercase generator
const int = new RayID("digit"); // Only int generator
const sym = new RayID("symbol"); // Symbol generator

Now use them:

console.log(ray.gen(10)); // Z*jVQ3c:+H
console.log(srt.gen(10)); // ksixvpqohi
console.log(int.gen(10)); // 4748182066
console.log(sym.gen(10)); // ?,^.+</::/

All done!


Development

If you want to develop the package, it is so simple. just follow steps below.

  • Clone the project
  • Install dependencies by running $ npm install
  • Start changing!
    • Link package
    • Test

Before you start: Remember the base or code are stored in lib/rayid.js. You need to edit there.

Cloning the project

To clone the project, you need to have git installed. Ok, now clone it same as command below.

$ git clone https://gitlab.com/BlackIQ/rayid

installing dependencies

Next, install what package uses with npm i or npm install.

$ npm i

Changing

To change package or anything, your need a testing environment to use linked package. Just follow steps.

We asoume you are in lib directory. Right. You can open a tmux or in another terminal to cd in test directory.

In lib directory enter link command:

$ npm link

So, in other terminal, or other tmux part, link your development package to your test directory. If you are in the test directory ok, if not, just say cd test and enter the linking command:

$ npm link rayid

Linking step is done.

Test

Your test app is linked. Change anything in package and test it in test directory.