dictionary-sr

Serbian spelling dictionary in UTF-8.

Usage no npm install needed!

<script type="module">
  import dictionarySr from 'https://cdn.skypack.dev/dictionary-sr';
</script>

README

dictionary-sr

Serbian spelling dictionary in UTF-8.

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

Generated by dictionaries from grakic/hunspell-sr.

Install

npm:

npm install dictionary-sr

Use

var sr = require('dictionary-sr')

sr(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-sr')

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

License

Dictionary and affix file: (GPL-2.0 OR LGPL-2.1 OR MPL-1.1 OR CC-BY-SA-3.0). Rest: MIT © Titus Wormer.