
Security News
ESLint Adds Official Support for Linting HTML
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
@smakss/random-string
Advanced tools
Effortlessly generate customizable random strings with @smakss/random-string. Ideal for creating dummy strings, custom-length passwords, or unique identifiers. Integrates seamlessly with both CommonJS and ECMAScript modules.
This package will generate a random dummy string based on the available set of characters or provided ones, and 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 package will help you to achieve what you want.
If you're in need of a UUID generation library, take a look at @smakss/uuid, which offers robust UUID creation capabilities. For those who require more tailored options, @smakss/password-generator provides a versatile solution for crafting custom passwords to fit a variety of needs.
You can check the working demo in runkit.
or
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 a common js module you should do this:
const randomString = require('@smakss/random-string');
And to include it with an ECMAScript module you can simply do this one:
import randomString from '@smakss/random-string';
Then to use it within your application you can do it just like this:
Generate a random string with default parameters:
randomString();
// Result example: 'GkL9#z$P!2'
NOTE: If the length
is not provided, it will be selected randomly between 1 and 20.
Generate a random string with a specified length:
randomString({ length: 10 });
// Result example: 'Sg67&ZpQ8!'
You can provide both length and allowed characters:
randomString({ length: 10, allowedCharacters: 'abCD#@' });
// Result example: 'b@@#aDaC##'
Interested in making contributions to this project? Please see CONTRIBUTING.md for guidelines and details.
We value and prioritize the well-being of all our contributors and users. To ensure that this project remains a welcoming space for everyone, please refer to our Code of Conduct.
FAQs
Effortlessly generate customizable random strings with @smakss/random-string. Ideal for creating dummy strings, custom-length passwords, or unique identifiers. Integrates seamlessly with both CommonJS and ECMAScript modules.
We found that @smakss/random-string demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.