A module that wraps IDN Client APIs.
Make sure you have Node.js installed and your in your projects working directory.
npm install --save IDN_client_node
This command will install the IDN node client in your current project and add it to your packages.json file
You will need the username and password you recieved from IDN support. You can install the module like so:
let idn = require('./index.js');
And initialise the connection with IDN like so:
idn.init({
user : "YOUR_USERNAME",
pass : "YOUR_PASSWORD",
env : "test"
});
Full API documentation is described here