GithubHelp home page GithubHelp logo

nestjs-ipfs-http's Introduction

IPFS HTTP module for Nest framework (NestJS)

This package provides a IPFS client as a NestJS Module.

Because the previous IPFS HTTP module has been depreciated, and the replacement kubo-rpc-client is utter madness to work with in CommonJS (kubo-rpc-client is a ESM library, which relies on ipfs-utils which is a CommonJS library), I decided to manually implement the important endpoints.

That being said, truly ... fu** this ESM/CJS shit. Fu** it.

Here's what's supported:

  • add
  • get
  • cat
  • stats/dht

Installation

  • v0.2.0 is using NestJS 9 for legac reasons.
pnpm install nestjs-ipfs-http

Usage

This module expects a running IPFS daemon.

ipfs daemon

Import

@Module({
    imports: [
        IpfsHttpModule.forRootAsync(IpfsHttpModule, {
            useFactory: () => {
                return {
                    client: {
                        host: '127.0.0.1',
                        port: 5001,
                    },
                }
            },
        }),
    ],
})
export class AppModule {}

Use

const isOnline = await ipfsHttpService.client.isOnline()
console.log(isOnline) // true

Refer to test/e2e/ipfs.spec.ts for more examples.

Test

pnpm run test

nestjs-ipfs-http's People

Contributors

franzos avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.