wikidata-person-names
v1.3.0
Published
Set of given and last names pulled from Wikidata
Downloads
832
Maintainers
Readme
wikidata-person-names
Set of given and last names pulled from Wikidata
When using random names I needed a list of names. Wikidata has a lot of them, so I pulled them from there. As names don't change that often and are rather static this repo is a snapshot from Wikidata.
Maintainer Hint: Updating the file (with update-names.ts
) will query different
names than before as LIMIT in the SparQL query is non-deterministic.
Usage
Node.js
npm install wikidata-person-names
import { FAMILY, UNISEX } from "wikidata-person-names";
UNISEX;
//=> ['Akira', 'Alba', 'Jody', 'Marie', 'Sacha', …]
FAMILY;
//=> ['Hein', 'Ling', 'Owen', …]
randomItem(UNISEX);
//=> 'Jule'
Deno
via ghc.deno.dev
import {
FAMILY,
UNISEX,
} from "https://ghc.deno.dev/EdJoPaTo/wikidata-person-names/index.ts";
UNISEX;
//=> ['Akira', 'Alba', 'Jody', 'Marie', 'Sacha', …]
FAMILY;
//=> ['Hein', 'Ling', 'Owen', …]
randomItem(UNISEX);
//=> 'Jule'