textgears-api
TypeScript icon, indicating that this package has built-in type declarations

1.1.11 • Public • Published

Textgears API for javascript travis-badge

Textgears API for node.js

install

install the package with npm:

$ npm install textgears-api

or with yarn:

$ yarn add textgears-api

usage

import * as textgears from 'textgears-api';

const textgearsApi = textgears('YOUR_KEY', {language: 'en-US', ai: false});
textgearsApi.checkGrammar('I is a engineer')
    .then((data) => {
        for (const error of data.response.errors) {
            console.log('Error: %s. Suggestions: %s', error.bad, error.better.join(', '));
        }
    })
    .catch((err) => {});

You can run tests with command

npm test

which is an alias for

nyc mocha

or

./node_modules/nyc/bin/nyc.js ./node_modules/mocha/bin/mocha

/textgears-api/

    Package Sidebar

    Install

    npm i textgears-api

    Weekly Downloads

    200

    Version

    1.1.11

    License

    ISC

    Unpacked Size

    34 kB

    Total Files

    9

    Last publish

    Collaborators

    • insbrook