https://github.com/frontyard/dictionary-bs
Bosnian dictionary for Hunspell.
https://github.com/frontyard/dictionary-bs
Last synced: 4 months ago
JSON representation
Bosnian dictionary for Hunspell.
- Host: GitHub
- URL: https://github.com/frontyard/dictionary-bs
- Owner: frontyard
- License: other
- Created: 2016-06-04T14:03:34.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-04T14:45:12.000Z (about 10 years ago)
- Last Synced: 2025-11-24T00:15:40.507Z (7 months ago)
- Size: 342 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# dictionary-bs
Bosnian spelling dictionary in UTF-8.
Useful with [hunspell][hunspell] ([node bindings][nodehun]), Open Office, LibreOffice, FireFox and Thunderbird, or [place them in`~/Library/Spelling`][osx] on OS X.
## Installation
[npm][npm]:
```bash
npm install dictionary-bs
```
## Usage
```js
var bs = require('dictionary-bs');
bs(function (err, result) {
if (err) throw err;
console.log(result);
/*
* Yields:
* { dic: ,
* aff: }
*/
});
```
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:
```js
var path = require('path');
var base = require.resolve('dictionary-bs');
// NEVER USE `readFileSync` IN PRODUCTION.
fs.readFileSync(path.join(base, 'index.dic'), 'utf-8');
fs.readFileSync(path.join(base, 'index.aff'), 'utf-8');
```
## License
Dictionary and affix file: GPL-3.0, rest MIT ©