mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
66 lines
3.3 KiB
Markdown
66 lines
3.3 KiB
Markdown
# js-ipfs-utils
|
|
|
|
[](http://protocol.ai)
|
|
[](http://ipfs.io/)
|
|
[](http://webchat.freenode.net/?channels=%23ipfs)
|
|
[](https://travis-ci.com/ipfs/js-ipfs-utils)
|
|
[](https://codecov.io/gh/ipfs/js-ipfs-utils)
|
|
[](https://david-dm.org/ipfs/js-ipfsd-ctl)
|
|
[](https://github.com/feross/standard)
|
|
|
|
> This package serves as a central repository for shared logic and dependencies for all IPFS packages, using `ipfs-utils` helps to easily re-use small scoped blocks of logic across all the js core interface implementations and also as a dependency proxy (think `aegir` for domain logic dependencies).
|
|
|
|
`ipfs-utils` aims to provide single function default export per file (with a few exceptions) scoped in 3 general categories:
|
|
- General use
|
|
- Data structs wrangling (arrays, objects, streams, etc)
|
|
- IPFS core subsystems
|
|
|
|
*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:
|
|
- Domain logic dedupe - all interface-core implementations shared a lot of logic like validation, streams handling, etc.
|
|
- Dependencies management - it's really easy with so many repos for dependencies to go out of control, they become outdated, different repos use different modules to do the same thing (like merging defaults options), browser bundles ends up with multiple versions of the same package, bumping versions is cumbersome to do because we need to go through several repos, etc.
|
|
|
|
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.
|
|
|
|
## Lead Maintainer
|
|
|
|
[Hugo Dias](https://github.com/hugomrdias)
|
|
|
|
## Install
|
|
|
|
|
|
```bash
|
|
$ npm install --save ipfs-utils
|
|
```
|
|
|
|
## Usage
|
|
Each function should be imported directly.
|
|
|
|
```js
|
|
const validateAddInput = require('ipfs-utils/src/files/add-input-validation')
|
|
|
|
validateAddInput(Buffer.from('test'))
|
|
// true
|
|
```
|
|
|
|
## Functions
|
|
|
|
### General Use
|
|
#### TODO
|
|
### Data Struct Wrangling
|
|
#### TODO
|
|
### Core API
|
|
#### TODO
|
|
|
|
|
|
## Contribute
|
|
|
|
Contributions welcome. Please check out [the issues](https://github.com/ipfs/js-ipfs-utils/issues).
|
|
|
|
Check out our [contributing document](https://github.com/ipfs/community/blob/master/contributing.md) 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](https://github.com/ipfs/community/blob/master/code-of-conduct.md).
|
|
|
|
## License
|
|
|
|
[MIT](LICENSE) © Protocol Labs Inc.
|