An open API service indexing awesome lists of open source software.

https://github.com/arikato111/char-random

random string and number | nodejs library
https://github.com/arikato111/char-random

javascript-library npm-package random-string

Last synced: 3 months ago
JSON representation

random string and number | nodejs library

Awesome Lists containing this project

README

        

#

char random


Github License
GitHub Package.json Version
GitHub Issues
GitHub Pull Requests
GitHub Contributors

random one or many text

## Installing

Install with NPM
```
npm install char-random
```
or install with Yarn
```
yarn add char-random
```

## Example

With no config

```js
import charRandom from "char-random";

let char = charRandom()
```

With config

```js
import charRandom from "char-random";

let char = charRandom({
count: 32,
allowLowerCase: true,
allowNumber: true
})
```