PRs welcome
example: https://github.com/barnjamin/algorand-session-wallet-example
npm -i algorand-session-wallet
const sw = new SessionWallet("TestNet", "algosigner-wallet")
if(!sw.connect()) return alert("Couldnt connect")
//...
const accts = sw.accountList()
//...
sw.signTxn([txnblobs])
//...
sw.disconnect()