7.0.1 • Published 1 year ago
aki-api v7.0.1
aki-api (Akinator)
An API for Akinator based in NodeJS.
Installation
npm i aki-api
Regions
[
'en',
'ar',
'cn',
'de',
'es',
'fr',
'il',
'it',
'jp',
'kr',
'nl',
'pl',
'pt',
'ru',
'tr',
'id'
]
Usage
const { Aki } = require('aki-api');
const run = async () => {
const region = 'en';
const childMode = false;
const proxy = undefined;
const aki = new Aki({ region, childMode, proxy });
await aki.start();
console.log('question:', aki.question);
console.log('answers: ', aki.answers);
}
run().catch(console.error);
Output from above console.log
question: Is your character real?
answers: [
"Yes",
"No",
"Don't know",
"Probably",
"Probably not"
]
Get regions that I support
const { regions } = require('aki-api');
console.log(regions);
Answer a Question (step)
const { Aki } = require('aki-api');
const run = async () => {
const region = 'en';
const aki = new Aki({ region });
await aki.start();
const myAnswer = 0; // yes = 0
await aki.step(myAnswer);
console.log('question:', aki.question);
console.log('answers:', aki.answers);
console.log('progress:', aki.progress);
}
run().catch(console.error);
Win/Show the akinator's guess
Akinator will automatically guess when calling the answer() method
const { Aki } = require('aki-api');
const run = async () => {
const region = 'en';
const aki = new Aki({ region });
const guessOrResponse = await aki.answer(); // check if it is a guess by akinator or another question
// if you do not like the answer...
await aki.continue();
}
run().catch(console.error);
Enable child mode
Simply pass in true or false for the childMode parameter
The child mode prevents showing explicit questions.
const { Aki } = require('aki-api');
const run = async () => {
const region = 'en';
const childMode = true;
const aki = new Aki({ region, childMode });
}
run().catch(console.error);
Example Code for Back
const { Aki } = require('aki-api');
const run = async () => {
const region = 'en';
const aki = new Aki({ region });
await aki.start();
const myAnswer = 1; // no = 1
await aki.step(myAnswer);
await aki.back();
console.log('question:', aki.question);
console.log('answers:', aki.answers);
}
run().catch(console.error);
7.0.1
1 year ago
7.0.0
1 year ago
6.0.9
2 years ago
6.0.8
4 years ago
6.0.7
4 years ago
6.0.6
4 years ago
6.0.5
4 years ago
6.0.4
4 years ago
6.0.0
4 years ago
6.0.3
4 years ago
6.0.2
4 years ago
5.2.1
4 years ago
5.2.0
5 years ago
5.1.1
5 years ago
5.1.0
5 years ago
5.0.0
5 years ago
4.0.0
5 years ago
3.2.1
6 years ago
3.2.0
6 years ago
3.1.1
6 years ago
3.1.0
6 years ago
3.0.0
6 years ago
2.1.1
7 years ago
2.1.0
7 years ago
2.0.11
7 years ago
2.0.1
7 years ago
2.0.0
7 years ago
1.0.1
7 years ago
1.0.0
7 years ago