List of french words
npm install word-list-frBasically a copy past of word-list but the word are in french.
List come from French words.
Useful if you're creating a word game or just want some words to work with in French.
One-letter words are not included. Many common bad words are also filtered out.
``sh`
npm install word-list-fr
`js
import fs from 'node:fs';
import wordListPath from 'word-list-fr';
const wordArray = fs.readFileSync(wordListPath, 'utf8').split('\n');
//=> […, 'abaca', 'abacule', …]
``