
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.
Generate words by defining consonants and vowels format. Ie. generate('VC') => [ 'ab','ac','ad',...]
Install for global use
npm i -g wordplex
Install for use in project
npm i --save wordplex
wordplex --help
wordplex <pattern> [options]
Generate words according to pattern CVC (generates: bab ...) or word google
(generates baabba ...)
Options:
--help Show help [boolean]
--version Show version number [boolean]
--verbose, -v Run with verbose logging [boolean]
--similar, -s Provide similar word instead of pattern. Will generate similar
words. [boolean]
--prefix Set text to be added to the beggining of all generated texts
[string]
--suffix Set text to be added to the end of all generated texts [string]
--pattern [default: "CVC"]
Generate all 3 letter .com domains in CVC format
wordplex CVC --suffix=.com
Generate all 4 letter .net domains in CVCV format
wordplex CVCV --suffix=.net
Generate words in format CVC (consonant vowel consonant)
$ wordplex CVC
bbb
bbc
bbd
bbf
bbg
bbh
bbj
bbk
bbl
bbm
...
$ wordplex look
Will generate words similar to look in CVVC format
baab
baac
baad
baaf
baag
baah
baaj
baak
baal
baam
...
const wordplex = require('wordplex');
wordplex.generate('CVC', function(word) {
console.log(word)
});
Result
[ 'bab',
'bac',
'bad',
'baf',
'bag',
'bah',
'baj',
'bak',
'bal',
'bam',
'ban',
'bap',
'baq',
...
var words = wordplex.generate('VC');
console.log(words)
Result
[ 'ab',
'ac',
'ad',
'af',
'ag',
'ah',
'aj',
'ak',
'al',
'am',
'an',
...
var words = wordplex.similar('google');
console.log(words)
Result generate words in CVVCCV format
[ 'baabba',
'baabbe',
'baabbi',
'baabbo',
'baabbu',
'baabca',
'baabce',
'baabci',
'baabco',
'baabcu',
'baabda',
'baabde',
...
var words = wordplex.generate('VC#');
console.log(words)
Result
[ 'ab1',
'ab2',
'ab3',
'ab4',
'ab5',
'ab6',
'ab7',
'ab8',
'ab9',
'ab0',
'ac1',
'ac2',
'ac3',
...
var words = wordplex.setPrefix('my-').similar("dog");
console.log(words)
Result
[ 'my-bab',
'my-bac',
'my-bad',
'my-baf',
'my-bag',
'my-bah',
'my-baj',
'my-bak',
'my-bal',
'my-bam',
'my-ban',
'my-bap',
...
var words = wordplex.setSuffix('.com').generate('CVC');
console.log(words)
Result
[ 'bab.com',
'bac.com',
'bad.com',
'baf.com',
'bag.com',
'bah.com',
'baj.com',
'bak.com',
'bal.com',
'bam.com',
'ban.com',
'bap.com',
...
var words = wordplex.reset().generate();
console.log(words)
Result
[ 'ab',
'ac',
'ad',
'af',
'ag',
'ah',
'aj',
'ak',
...
FAQs
Generate words by defining consonants and vowels format. Ie. generate('VC') => [ 'ab','ac','ad',...]
We found that wordplex 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.