Socket
Socket
Sign inDemoInstall

@smakss/random-string

Package Overview
Dependencies
0
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @smakss/random-string

Generates random dummy string with random length.


Version published
Weekly downloads
445
decreased by-18.94%
Maintainers
1
Install size
5.35 kB
Created
Weekly downloads
 

Readme

Source

Generate random string

npm Snyk Vulnerabilities for npm package NPM npm npm bundle size (scoped)

This package will generate a random dummy string based on the available set of characters or provided ones, you can also indicate the length of your desired random string. In case you don't care about uniqueness and don't want to use UUID this one will help you to achieve what you want.

How it works?

To install it you can simply do the following command:

npm i @smakss/random-string
or
yarn add @smakss/random-string

to include it with common js module you should do this:

var randomString = require("@smakss/random-string");

and to include it with ECMAscript module you can simply do this one:

import randomString from "@smakss/random-string";

Examples of usage

then to use it within your application you can do it just like this:

Generate a random string:

randomString();

// Result: 'epTfoad497&p'

NOTE: If the input params were empty the length of string will be selected randomly between 1-20.

Generate a random string with a length of 10:

randomString(10);

// Result: 'BD@Z8dKf2%'

You can provide both length and allowed characters:

randomString(10, "abCD#@");

// Result: 'b@@#aDaC##'

Demo

You can check the working demo in runkit.

or

View @smakss/random-string

Keywords

FAQs

Last updated on 19 Oct 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc