# randomstrings

> A module for generating random strings

Latest version **0.0.2** (published 2016-01-03) · ISC license · 0 weekly downloads

## Install

```sh
npm install randomstrings
pnpm add randomstrings
yarn add randomstrings
bun add randomstrings
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.2 |
| Published | 2016-01-03 |
| First published | 2016-01-03 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | zuzu |
| Maintainers | zuzu |

## Links

- npm: https://www.npmjs.com/package/randomstrings
- Repository: https://github.com/zuzuta22/randomstrings
- Homepage: https://github.com/zuzuta22/randomstrings#readme
- Issues: https://github.com/zuzuta22/randomstrings/issues
- npm.io page: https://npm.io/package/randomstrings

## Recent versions

- 0.0.2 (latest) — 2016-01-03
- 0.0.1 — 2016-01-03

## README

# randomstrings

A module for generating random strings

## Install

```npm install randomstrings```

## Example

```
var RS = require('./randomstrings');

var lowercase = true;
var uppercase = true;
var digit = true;
var symbol = true;
var length = 20;

var randomstring = RS(length, lowercase, uppercase, digit, symbol);

console.log(randomstring);
```

---
_Source: https://npm.io/package/randomstrings · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
