Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@smakss/random-string
Advanced tools
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').default;
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.
The npm package @smakss/random-string receives a total of 249 weekly downloads. As such, @smakss/random-string popularity was classified as not popular.
We found that @smakss/random-string demonstrated a healthy version release cadence and project activity because the last version was released less than 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.