Install the SDK using NPM:
$ npm install idexo-sdk
This installs the SDK and gives you access to simplified methods that communicate with the Idexo API for processing your multi-blockchain developer transactions.
Now that you've installed the SDK, let's create a file called index.js that will upload plain text permanently to Arweave:
const ido = require('idexo-sdk')ido.Arweave.uploadPlain('Hello World').then((res) => console.log(res.data))