Random Name Generator

node v18.11.0
version: 1.0.0
endpointsharetweet
const {uniqueNamesGenerator, adjectives, colors, starWars} = require("unique-names-generator"); const customConfig = { dictionaries: [adjectives, colors, starWars], separator: ' ', length: 3, }; for(let x = 0; x < 50; x++) { console.log(uniqueNamesGenerator(customConfig)); }
Loading…

no comments

    sign in to comment