0.1.1 • Published 5 years ago

bing-spell-checker v0.1.1

Weekly downloads
536
License
MIT
Repository
github
Last release
5 years ago

Bing Spell Checker

This node.js module calls Bing's Spell Check API with the provided text. It returns corrected text if API suggests correction.

Details are here: Bing Spell Check

Install

npm install bing-spell-checker

How to use?

You need an API access key. You can get it from here: Bing Spell Check API Access

Reading access key through environment variables are a secure way of accessing secret information. Therefore, you should consider setting access key to environment variables.

'use strict'

const BingSpellChecker = require('bing-spell-checker')

BingSpellChecker.init({
  'key': process.env.BING_SPELL_CHECK_API_KEY
})

let promise = BingSpellChecker.check('It workd!')
promise.then(function (result) {
  console.log(result) // "Stuff worked!"
}, function (err) {
  console.log(err) // Error: "It broke"
})

TODO

  • Provide a threshold value
0.1.1

5 years ago

0.1.0

5 years ago

0.0.1

5 years ago