diodejs
v0.0.3
Published
A JavaScript client for interacting with the Diode network. It provides functionalities to bind and publish ports, send RPC commands, and handle responses.
Downloads
8
Readme
diode_js
Overview
diode_js
is a JavaScript client for interacting with the Diode network. It provides functionalities to bind and publish ports, send RPC commands, and handle responses.
Installation
npm install diodejs
Quick Start
To get started, you need to generate a device certificate using OpenSSL. You can use this command:
openssl ecparam -name secp256k1 -out secp256k1_params.pem
openssl req -newkey ec:./secp256k1_params.pem -nodes -keyout device_certificate.pem -x509 -days 365 -out device_certificate.pem -subj "/CN=device"
Test RPC
Here's a quick example to get you started with RPC functions using DiodeRPC
Class
const { DiodeConnection, DiodeRPC, makeReadable } = require('diodejs');
async function main() {
const host = 'eu2.prenet.diode.io';
const port = 41046;
const certPath = 'device_certificate.pem';
const connection = new DiodeConnection(host, port, certPath);
await connection.connect();
const rpc = new DiodeRPC(connection);
try {
const ping = await rpc.ping();
console.log('Ping:', ping);
const blockPeak = await rpc.getBlockPeak();
console.log('Current Block Peak:', blockPeak);
const blockHeader = await rpc.getBlockHeader(blockPeak);
console.log('Block Header:', makeReadable(blockHeader));
} catch (error) {
console.error('RPC Error:', error);
} finally {
connection.close();
}
}
main();
Bind Port
Here's a quick example to get you started with port forwarding using the BindPort
class.
const { DiodeConnection, BindPort } = require('diodejs');
async function main() {
const host = 'eu2.prenet.diode.io';
const port = 41046;
const certPath = 'device_certificate.pem';
const connection = new DiodeConnection(host, port, certPath);
await connection.connect();
const portForward = new BindPort(connection, 3002, 80, "5365baf29cb7ab58de588dfc448913cb609283e2");
portForward.bind();
}
main();
Publish Port
Here's a quick example to get you started with publishing ports using the PublishPort
class:
const { DiodeConnection, PublishPort } = require('diodejs');
async function main() {
const host = 'us2.prenet.diode.io';
const port = 41046;
const certPath = 'device_certificate.pem';
const connection = new DiodeConnection(host, port, certPath);
await connection.connect();
const publishedPorts = [8080]; // Ports you want to publish
const publishPort = new PublishPort(connection, publishedPorts, certPath);
}
main();