1.0.0 • Published 5 years ago

a-parser-client v1.0.0

Weekly downloads
9
License
ISC
Repository
github
Last release
5 years ago

api-nodejs

A-Parser API Client Library for Node.js

Usage

const AParserClient = require('a-parser-client');

const AParser = new AParserClient('http://127.0.0.1:9091/API');

AParser.ping()
    .then(reply => console.log(reply.data))
    .catch(err => console.log(err));


(async () => {
    const reply = await AParser.addTask(...);
})()
1.0.0

5 years ago