![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
ipld-dag-pb
Advanced tools
JavaScript Implementation of the IPLD Format MerkleDAG Node in Protobuf. In addition to the IPLD Format methods, this module also provides an API for creating the nodes and manipulating them (adding and removing links, etc).
dagPB.util.cid
dagPB.util.serialize
dagPB.util.deserialize
> npm install ipld-dag-pb --save
const dagPB = require('ipld-dag-pb')
dagPB.DAGNode.create // create a DAGNode
dagPB.DAGNode.clone // clone a DAGNode
dagPB.DAGNode.addLink // add a Link to a DAGNode, creating a new one
dagPB.DAGNode.rmLink // remove a Link to a DAGNode, creating a new one
dagPB.DAGLink.create // create a DAGLink
// IPLD Format specifics
dagPB.resolver
dagPB.util
DAGNode.create(new Buffer('some data'), (err, node1) => {
if (err) {
throw error
}
// node1 is your DAGNode instance.
})
DAGNode.create('some data', (err, node2) => {
// node2 will have the same data as node1.
})
const link = {
name: 'I am a link',
cid: 'QmHash..',
size: 42
}
DAGNode.addLink(node, link, (err, nodeA) => {
if (err) {
throw err
}
// node - DAGNode instance with the link
console.log('with link', nodeA.toJSON())
DAGNode.rmLink(nodeA, 'I am a link', (err, nodeB) => {
if (err) {
throw err
}
// node - DAGNode instance without the link, equal to just node
console.log('without link', nodeB.toJSON())
})
})
DAGNodes are immutable objects, in order to manipulate them you have to follow a function approach of applying function and getting new instances of the given DAGNode.
You can incude it in your project with:
const dagPB = require('ipld-dag-pb')
const DAGNode = dagPB.DAGNode
data
- type: Bufferlinks
- type: Array of DAGLink instances or Array of DAGLink instances in its json format (link.toJSON)callback
- type: function with signature function (err, node) {}
Create a DAGNode.
DAGNode.create('data', links, (err, dagNode) => {
// ...
})
links can be a single or an array of DAGLinks instances or objects with the following pattern
{
name: '<some name>',
cid: '<some cid>',
size: <sizeInBytes>
}
node
- type: DAGNodelink
- type: DAGLink or DAGLink in its json formatcallback
- type: function with signature function (err, node) {}
Creates a link on node A to node B by using node B to get its CID. Returns a new instance of DAGNode without modifying the old one.
Creates a new DAGNode instance with the union of node.links plus the new link.
link
can be:
{
name: '<some string>', // optional
size: <size in bytes>,
cid: <cid> // can be a String CID, CID buffer or CID object
}
node
- type: DAGNodenameOrCid
- type: String, CID object or CID buffercallback
- type: function with signature function (err, node) {}
Removes a link from the node by name. Returns a new instance of DAGNode without modifying the old one.
DAGNode.rmLink(node, 'Link1' (err, dagNode) => ...)
node
- type: DAGNodecallback
- type: function with signature function (err, node) {}
Creates a clone of the DAGNode instance passed
DAGNode.clone(node, (err, nodeClone) => {})
You have the following methods and properties available in every DAGNode instance.
node.data
node.links
An array of DAGLinks
node.size
Size of the node, in bytes
node.toJSON()
node.toString()
Following the same pattern as DAGNode functions
above, DAGLink also offers a function for its creation.
You can incude it in your project with:
const dagPB = require('ipld-dag-pb')
const DAGLink = dagPB.DAGLink
DAGLink.create(
'link-to-file', // name of the link (can be empty)
10, // size in bytes
'QmSomeHash...', // can be CID object, CID buffer or string
(err, link) => {
if (err) {
throw err
}
// link is a DAGLink instance
})
Note: DAGLinks are simpler objects and can be instantiated directly:
const link = new DAGLink(name, size, cid)
link.name
link.size
link.cid
link.toJSON()
link.toString()
See: https://github.com/ipld/interface-ipld-format#local-resolver-methods
dagPB.resolver.resolve
dagPB.resolver.tree
dagPB.resolver.patch
See: https://github.com/ipld/interface-ipld-format#ipld-format-utils
dagPB.util.cid
dagPB.util.serialize
dagPB.util.deserialize
Please contribute! Look at the issues!
Check out our contributing document for more information on how we work, and about contributing in general. Please be aware that all interactions related to IPLD are subject to the IPFS Code of Conduct.
Small note: If editing the README, please conform to the standard-readme specification.
ISC © 2016 Protocol Labs Inc.
FAQs
JavaScript Implementation of the MerkleDAG Node in Protobuf.
The npm package ipld-dag-pb receives a total of 0 weekly downloads. As such, ipld-dag-pb popularity was classified as not popular.
We found that ipld-dag-pb demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.