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: 7 months ago
JSON representation
random string and number | nodejs library
- Host: GitHub
- URL: https://github.com/arikato111/char-random
- Owner: Arikato111
- License: mit
- Created: 2023-03-19T14:10:00.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-10T04:35:49.000Z (over 2 years ago)
- Last Synced: 2025-09-02T01:37:36.754Z (7 months ago)
- Topics: javascript-library, npm-package, random-string
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/char-random
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#
char random
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
})
```