hub-lite is a main server for your Hub network
bunx v57/hub-litebun i && bun .HUBLISTEN: default listen address or port.
import { Service } from 'hub-service'
new Service().post('hash/sha256', body => new Bun.SHA256().update(body).digest('hex')).start()import { Service } from 'hub-service'
const service = new Service().start()
const hash = await service.send('hash/sha256', 'Hello World')
console.log(hash)