
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
simple-random-char
Advanced tools
Membuat karakter acak dengan dengan mudah dan simple. Dilengkapi dengan "Alphanumeric" && "Alphabet" && "Numbers" && "Costum"
Package ini menggunakan library Voucherify.
Apa saja fiturnya?
Install with npm:
$ npm install simple-random-char
With require:
const random = require("simple-random-char");
/*
#> count == 1 => result = String
#> count > 1 => result = Array
#> alphanum = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
#> alphabet = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
#> numbers = "0123456789"
#> custom = "YOUR_CUSTOM_CHAR"
*/
const alphanum = random.alphanum() // result : MGD9ypmFoXwhw7tws50n
const alphabet = random.alphabet() // result : thYSTuTTScEKQYfiwfpN
const numbers = random.numbers() // result : 26847188549482119024
const log = console.log;
const config = {
prefix: "awalan-", // default : ""
postfix: "-akhiran", // default : ""
length: 10, // default : 20
count: 1 // default : 1
}
log(random.alphanum(config)) // result : awalan-qgx2vNjzpu-akhiran
log(random.alphabet(config)) // result : awalan-DIlzxHVBlx-akhiran
log(random.numbers(config)) // result : awalan-2615231700-akhiran
const log = console.log;
const custom = {
prefix: "awalan-", // default : ""
postfix: "-akhiran", // default : ""
length: 10, // default : 20
count: 1, // default : 1,
custom: "YOUR_CUSTOM_CHAR" // required! (bisa di isi apa aja)
}
log(random.custom(custom)) // result : awalan-CR_AYRHUUS-akhiran
result for count > 1
(lebih dari satu)
[
"awalan-fbT82pSXJt-akhiran",
"awalan-YoR33rMTWb-akhiran",
"awalan-99iW2fGrWV-akhiran"
] // alphanum
[
"awalan-EwwIRhgMJa-akhiran",
"awalan-gyHaYdMXmg-akhiran",
"awalan-chFbICCvaf-akhiran"
] // alphabet
[
"awalan-3781640300-akhiran",
"awalan-3730818925-akhiran",
"awalan-0984199624-akhiran"
] // numbers
[
"awalan-SCUTSRHTSO-akhiran",
"awalan-OTSCSOCOAH-akhiran",
"awalan-RRRRUMSOOA-akhiran"
] // custom
Install dependencies:
npm install
Run tests:
npm run test
Code released under the Apache.
FAQs
Simple package to get Random Char
We found that simple-random-char 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
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.