Skip to content

Latest commit

 

History

History
 
 

en-CA

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

dictionary-en-ca

English (Canada) spelling dictionary in UTF-8.

Useful with hunspell, nodehun, nspell, Open Office, LibreOffice, Firefox and Thunderbird, or macOS.

Generated by dictionaries from wordlist.aspell.net.

Install

npm:

npm install dictionary-en-ca

Use

var enCa = require('dictionary-en-ca')

enCa(function (err, result) {
  console.log(err || result)
})

Yields:

{dic: <Buffer>, aff: <Buffer>}

Where dic is a Buffer for the dictionary file at index.dic (in UTF-8) and aff is a Buffer for the affix file at index.aff (in UTF-8).

Or directly load the files, using something like:

var path = require('path')
var base = require.resolve('dictionary-en-ca')

fs.readFileSync(path.join(base, 'index.dic'), 'utf-8')
fs.readFileSync(path.join(base, 'index.aff'), 'utf-8')

License

Dictionary and affix file: (MIT AND BSD). Rest: MIT © Titus Wormer.