1.4.0 • Published 7 years ago

answers-bot v1.4.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

Answers - Answers bot


npm package

Installation

npm install answers-bot

Usage

var answer = require('answers-bot');
var options = {
    q: "Who is the owner of google", // question
    limit: 2 // results limit
};
new answer(options, function (res) {
    for (var r in res) {
        console.log(res[r].answer);
    }
})
    .error = function (err) {
        console.error(err);
    };
// => Larry Page and Sergey Brin, who were Ph.D. students at Stanford \n Google Chrome is owned by the founder of Google and the Google company. It is not just owned by a single person.
1.4.0

7 years ago

1.3.0

7 years ago

1.2.0

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago