I am looking to generate a wallet (which includes creating an account address and private key) directly in the browser without the need to connect to a node. It seems that in order to utilize web3.js, a provider (such as Metamask or localnode) needs to be set in order to use
web3.personal.newAccount("SEED", (response) => { console.log(response)})
While ethereumjs-wallet
seems perfect for my needs, it is currently only available as a node module. Is there a way to use it as a browser module, or are there any alternative solutions that would work?