Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Fake English word generator
npm i -S fakelish
Here is an usage in JavaScript.
// Import fakelish
const fakelish = require("fakelish");
// Min and max Lengths of fake words
const minLen = 7;
const maxLen = 11;
(async ()=>{
// Generate 20 fake words
for(let i = 0; i < 20; i++) {
// Generate a fake word
const fakeWord = await fakelish.generateFakeWord(minLen, maxLen);
// Print the capitalized fake word
console.log(capitalize(fakeWord));
}
})();
// Capitalize string
function capitalize(str) {
return str.charAt(0).toUpperCase() + str.substring(1);
}
The output should be like the following.
Schyperant
Imposillack
Tioughters
Schgruids
Viestios
Mundrial
Unkalphast
Mireock
Babrilly
Formalated
Gimbrawer
Trident
Compler
Ligical
Deprene
Ocoarriete
Raxalluffic
Pecties
Daeorhons
Herbalve
FAQs
Fake English word generator
We found that fakelish 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.