xrpl.js is a JavaScript/TypeScript library for interacting with the XRP Ledger (https://js.xrpl.org/)
In this tutorial you will be able to generate a new wallet on the XRP Ledger. You will run a code for that. To start, you will need Node.js installed in your computer, download and install it: https://nodejs.org
As IDE (Integrated Development Environment), you can use VSCode, it’s free (https://code.visualstudio.com/).
Attention: this method have some risks inhereritd. Your computer could be infected, so don’t use a unsafe computer or store the seed in your computer once it’s generated, in case you get hacked or infected, someone could get your seed.
Once you have a workspace ready on VSCode, open a Terminal window and write “npm install xrpl”. This will install xrpl.js library to your project.
After that, you can run the next code to generate your seed. Your account info and seed will be readable in your console log.
Code url: https://github.com/Ekiserrepe/XRPLWalletSeed/blob/d9eed4a2aea1f46796a57ec7175047aa0333fcca/wallet.js
Github link: https://github.com/Ekiserrepe/XRPLWalletSeed