An open API service indexing awesome lists of open source software.

https://github.com/anbuinfosec/node-simipro

Unofficial SimSimi API nodejs.
https://github.com/anbuinfosec/node-simipro

anbuinfosec node-simi node-simi-npm node-simipro simi simi-module simi-npm simi-npmjs simsimi simsimi-nodejs-modeule

Last synced: about 1 month ago
JSON representation

Unofficial SimSimi API nodejs.

Awesome Lists containing this project

README

        

# node-simipro


@node-simipro



node-simipro


Unofficial SimSimi API NodeJS
It's Free!




NPM | Repository | Report Bug | Issues

## Installation 📑
* Install Modules
```sh
npm i node-simipro
```

## How to Use 🔭
* With Asynchronous
* ESModule
```js
import simi from 'node-simipro';

async function talk() {
const res = await simi.simitalk ("4v3pm1KkchRGTTxAILoE", "bro what hepen?", "bn");
console.log (res)
}

async function teach() {
const res = await simi.simiteach ("4v3pm1KkchRGTTxAILoE", "bro what hepen?", "ntg hepen bruh!", "bn");
console.log (res)
}

talk ()
teach ()
```
* CommonJS
```js
const simi = require('node-simipro');

async function talk() {
const res = await simi.simitalk ("4v3pm1KkchRGTTxAILoE", "bro what hepen?", "bn");
console.log (res)
}

async function teach() {
const res = await simi.simiteach ("4v3pm1KkchRGTTxAILoE", "bro what hepen?", "ntg hepen bruh!", "bn");
console.log (res)
}

talk ()
teach ()
```

* Without Asynchronous
* ESModule
```js
import simitalk from 'node-simipro';

function talk() {
simi.simitalk ("4v3pm1KkchRGTTxAILoE", "bro what hepen?", "bn").then((response) => {
console.log(response);
});
}

function teach() {
simi.simiteach ("4v3pm1KkchRGTTxAILoE", "bro what hepen?", "ntg hepen bruh!", "bn").then((response) => {
console.log(response);
});
}

talk ()
teach ()
```
* CommonJS
```js
const simitalk = require('node-simipro');

function talk() {
simi.simitalk ("4v3pm1KkchRGTTxAILoE", "bro what hepen?", "bn").then((response) => {
console.log(response);
});
}

function teach() {
simi.simiteach ("4v3pm1KkchRGTTxAILoE", "bro what hepen?", "ntg hepen bruh!", "bn").then((response) => {
console.log(response);
});
}

talk ()
teach ()
```

## Response 📨
* Example Response simitalk
```json
{
"status": true,
"message": "ohh. bhai big boss evan kon bhai",
"author": "https://facebook.com/anbuinfosec"
}
```
* Example response simiteach
```json
{
"status": true,
"message": "SimSimi just learned 1th answer to the question \"who is anbuinfosec?\""
}
```

## Built With 🛠
* [Axios](https://axios-http.com/docs/intro)

## Error or Bug 🐞
* [Facebook](https://facebook.com/anbuinfosec)
* [YouTube](https://www.youtube.com/akxvau)
* [Instagram](https://www.instagram.com/anbuinfosec)
* [Issues](https://github.com/anbuinfosec/node-simipro/issues)

## License 📜
* [License](https://github.com/anbuinfosec/node-simipro/blob/main/LICENSE)