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: 9 months ago
JSON representation
Unofficial SimSimi API nodejs.
- Host: GitHub
- URL: https://github.com/anbuinfosec/node-simipro
- Owner: anbuinfosec
- License: mit
- Created: 2023-08-25T18:33:45.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-05-09T09:28:27.000Z (about 1 year ago)
- Last Synced: 2025-08-09T12:24:57.152Z (10 months ago)
- Topics: anbuinfosec, node-simi, node-simi-npm, node-simipro, simi, simi-module, simi-npm, simi-npmjs, simsimi, simsimi-nodejs-modeule
- Language: JavaScript
- Homepage: https://anbuinfosec.github.io/node-simipro/
- Size: 135 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# node-simipro
## 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 ("bro what hepen?", "bn");
console.log (res)
}
async function teach() {
const res = await simi.simiteach ("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 ("bro what hepen?", "bn");
console.log (res)
}
async function teach() {
const res = await simi.simiteach ("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 ("bro what hepen?", "bn").then((response) => {
console.log(response);
});
}
function teach() {
simi.simiteach ("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 ("bro what hepen?", "bn").then((response) => {
console.log(response);
});
}
function teach() {
simi.simiteach ("bro what hepen?", "ntg hepen bruh!", "bn").then((response) => {
console.log(response);
});
}
talk ()
teach ()
```
## Response 📨
* Example Response simitalk
```json
{
"success":true,
"message":"bye",
"isUnknownResponse":false
}
```
* Example response simiteach
```json
{
"success": true,
"message": "You taught the answer to \"hi\".\nNumber of answers: 99+"
}
```
## 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)