JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 58
  • Score
    100M100P100Q46691F
  • License CC0-1.0

Dynamic content builder

Package Exports

  • orbyte

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (orbyte) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Orbyte

Before install

First of all, you have to download Orbyte desktop application. The app is available in

Github Orbyteapp

Usage

install in your package.json project with

npm i orbyte

Once installed, you have to connect to SQL database

const orbyte = require('../src/index')({
    host: '<your_local_host>',
    user: '<db_user>',
    password: '<your_db_pwd',
    database: '<your_db>',
    port: '<your_port>'
});

To get, set or update data, go to the app and create new transfer. After that, right click on the transfer label and select "get code". The code will copied.

Then you can copy the code into your project like this

async function myFirstTransfer() {
    const response = await orbyte.connect({
        key: "94f7cc0e4ebf26ceba69edadbd82055999e91dd12aa543f6cb562039ede3a163"
    });

    console.log(response);
};

Execute the function to view the result