0.27.3 • Published 2 months ago

@leordev-tbdex/http-server v0.27.3

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 months ago

tbdex http server

A configurable implementation of the tbdex http api draft specification

This repo is currently under construction 🚧

Installation

npm install @tbdex/http-server

Usage

import { TbdexHttpServer } from '@tbdex/http-server'

const api = new TbdexHttpServer()

api.get('offerings', async (ctx, filter) => { /* write biz logic here */ })
api.get('exchanges', async (ctx, filter) => { /* write biz logic here */ })

api.submit('rfq', async (ctx, message) => { /* write biz logic here */ })
api.submit('order', async (ctx, message) => { /* write biz logic here */ })
api.submit('close', async (ctx, message) => { /* write biz logic here */ })


await api.listen(9000, () => {
  console.log('Server listening on port 9000')
})
0.27.3

2 months ago

0.27.2

3 months ago

0.27.1

3 months ago

0.27.0

3 months ago

0.26.4

3 months ago

0.26.3

3 months ago

0.26.2

3 months ago

0.26.1

3 months ago

0.26.0

3 months ago