1.0.14 • Published 1 year ago

node-simsimi v1.0.14

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Node-SimSimi

Installation 📑

  • Install Modules

    npm i node-simsimi

    How to Use 🔭

  • With Asynchronous

    • ESModule

      import simSimi from 'node-simsimi';
      
      async function main(message, language) {
        const response = await simSimi(message, language);
        console.log(response);
      }
      
      main("Hii Simi!", "en");
    • CommonJS

      const simSimi = require('node-simsimi');
      
      async function main(message, language) {
        const response = await simSimi(message, language);
        console.log(response);
      }
      
      main("Hii Simi!", "en");
  • Without Asynchronous

    • ESModule

      import simSimi from 'node-simsimi';
      
      function main(message, language) {
        simSimi(message, language).then((response) => {
          console.log(response);
        });
      }
      
      main("Hii Simi!", "en");
    • CommonJS

      const simSimi = require('node-simsimi');
      
      function main(message, language) {
        simSimi(message, language).then((response) => {
          console.log(response);
        });
      }
      
      main("Hii Simi!", "en");

Language 🏳

  • Language Support:
    • id : Indonesian
    • en : English
    • vn : Vietnamese
    • ph : Filipino
    • zh : Chinese
    • ch : Chamorro / Guam
    • ru : Russian
    • ko : Korean
    • ar : Arabic
    • ms : Malay
    • fr : French
    • ja : Japanese
    • es : Spanish
    • de : German
    • pt : Portuguese
    • ml : Malayalam
    • si : Sinhala
    • tr : Turkish
  • ⚠ Does not support other than languages/ISO 639-1 above

Response 📨

  • Example Response
    {
      message: 'Hi',
      response: 'Hallo',
      language: 'id',
      status: {
        code: 200,
        text: 'OK'
      }
    }

Built With 🛠

Error or Bug 🐞

License 📜

1.0.14

1 year ago

1.0.13

1 year ago

1.0.12

1 year ago

1.0.11

1 year ago

1.0.10

1 year ago

1.0.9

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago