First install the idexo sdk in your project.
npm install idexo-sdk
Next add the following code to your file (e.g. index.js).
const ido = require('idexo-sdk')ido.Ethereum.deployERC20('My New Token', 'MNT').then(res => console.log(res.data))
Running the above code returns the address of the newly deployed contract on the Ropsten Testnet. To view it, go to the Ropsten Etherscan Explorer and paste in your address in the search bar.