@helia/delegated-routing-v1-http-api-server
TypeScript icon, indicating that this package has built-in type declarations

4.0.1 • Public • Published

Helia logo

@helia/delegated-routing-v1-http-api-server

ipfs.tech Discuss codecov CI

A Delegated Routing V1 HTTP API server powered by Helia

About

Implements HTTP routes for a Fastify server that conform to the Routing V1 HTTP API.

Example

import { createHelia } from 'helia'
import { createDelegatedRoutingV1HttpApiServer } from '@helia/delegated-routing-v1-http-api-server'

const helia = await createHelia()
const server = await createDelegatedRoutingV1HttpApiServer(helia, {
  listen: {
    // fastify listen options
  }
})

// now make http requests

Alternatively if you have a Fastify instance already you can add routes to it.

Example

import fastify from 'fastify'
import cors from '@fastify/cors'
import { createHelia } from 'helia'
import routes from '@helia/routing-v1-http-api-server/routes'

const server = fastify({
 // fastify options
})
await server.register(cors, {
  origin: '*',
  methods: ['GET', 'OPTIONS'],
  strictPreflight: false
})

const helia = await createHelia()

// configure Routing V1 HTTP API routes
routes(server, helia)

await server.listen({
  // fastify listen options
})

// now make http requests

Install

$ npm i @helia/delegated-routing-v1-http-api-server

API Docs

License

Licensed under either of

Contribute

Contributions welcome! Please check out the issues.

Also see our contributing document for more information on how we work, and about contributing in general.

Please be aware that all interactions related to this repo are subject to the IPFS Code of Conduct.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Readme

Keywords

Package Sidebar

Install

npm i @helia/delegated-routing-v1-http-api-server

Weekly Downloads

234

Version

4.0.1

License

Apache-2.0 OR MIT

Unpacked Size

56.5 kB

Total Files

39

Last publish

Collaborators

  • npm-service-account-ipfs
  • achingbrain