ipfs / js-ipfs-utils

IPFS utils
Other
23 stars 30 forks source link
ipfs

ipfs-utils

ipfs.tech Discuss codecov CI

Package to aggregate shared logic and dependencies for the IPFS ecosystem

Table of contents

Install

$ npm i ipfs-utils

Browser <script> tag

Loading this module through a script tag will make it's exports available as IpfsUtils in the global namespace.

<script src="https://unpkg.com/ipfs-utils/dist/index.min.js"></script>

ipfs-utils aims to provide single function default export per file (with a few exceptions) scoped in 3 general categories:

General use and Data structs wrangling should try to be just re-exports of community packages.

The IPFS ecosystem has lots of repos with it comes several problems like:

These problems are the motivation for this package, having shared logic in this package avoids creating cyclic dependencies, centralizes common use modules/functions (exactly like aegir does for the tooling), semantic versioning for 3rd party dependencies is handled in one single place (a good example is going from streams 2 to 3) and maintainers should only care about having ipfs-utils updated.

Usage

Each function should be imported directly.

const validateAddInput = require('ipfs-utils/src/files/add-input-validation')

validateAddInput(Buffer.from('test'))
// true

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.