
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@vs-org/random
Advanced tools
This is simple random character generator utility
const random = required("@vs/random");
const randomNumbers = random({ length: 6, type: "numbers" });
output: "063367"
const random = required("@vs/random");
const randomString = random({ length: 6, type: "uppercase" });
output: "PJIBBA"
const random = required("@vs/random");
const randomString = random({ length: 6, type: "lowercase" });
output: "ochdid"
const random = required("@vs/random");
const randomString = random({ length: 6, type: "random" });
output: "RCIhj/"
const random = required("@vs/random");
const randomString = random({ length: 6, charset: "ABCDuifj987)(.:" });
output: "jC8(i8"
| option | Description |
|---|---|
type: numbers | Generate random number, but returns as string |
type: uppercase | Generate randomg string with only upper case alphabet |
type: lowercase | Genearte random string with only lowercase alphabet |
type: symbols | Generate random stgring with only symbols (from default charset) |
type: random | Generate random string with all above values (depends on length of string to include all chars). It does not mean it will atleast include one char from above options |
charset: {custom char set} | Generates random string from custom, note if charset is provided it takes priority over above options charset |
length: {length of random string} | Generates random string with above options of this length |
MIT (see LICENSE)
FAQs
This is simple random string generator utility
We found that @vs-org/random 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.