This commit is contained in:
Raven Scott
2026-05-20 23:57:33 -04:00
parent ac60c93151
commit 226fca591d
86 changed files with 200 additions and 162 deletions
@@ -0,0 +1,8 @@
require('bare-process/global')
const { HyperP2PVoidChannel } = require('../index.js')
async function main () {
const m = new HyperP2PVoidChannel()
console.log(m.getStats())
await m.close()
}
main().catch(console.error)