-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Collection for IPFS Newsletter #11: May 1 - May 16 #41
Comments
|
|
js-ipfsBitswap has been merged into js-ipfs, as of this pr. This means that js-ipfs nodes now can exchange (data) blocks. This is compatible with go-ipfs bitswap, but due to the multistream protocols not being a 100% compatible right now we can't connect to go-ipfs nodes yet. As soon as multistream connects, the bitswap implementations should have no problem exchanging blocks. To help out with this or follow along, look at this issue. interface-ipfs-core@dignifiedquire and @diasdavid are creating interface-ipfs-core, and "object" is the first part of it as of this week. This will be a test suite and interface you can use to implement a IPFS core interface. Their work involved writing the Object API spec (plus the foundations to write the remaining api specs), creating a batch of tests, and upgrading js-ipfs-api (now 4.x.x release) with the new interface. This unblocks the possibility of swapping js-ipfs-api with js-ipfs for Orbit. There are more methods to tackle in the core. @nginnever will be tackling The primary goal of this module is to define and ensure that both IPFS core implementations and their respective HTTP client libraries offer the same interface, so that developers can quickly change between a local and a remote node without having to change their applications. In addition to the definition of the expected interface, this module offers a suite of tests that can be run in order to check if the interface is used as described. The API is presented with both Node.js and Go primitives, however, there is not actual limitations for it to be extended for any other language, pushing forward the cross compatibility and interop through diferent stacks. |
js-multihashjs-multihash now has a more extensive set of tools to convert hashes, thanks to @dignifiedquire. You can look at the new API methods in the README section for them. Mostly, these are conversion methods; overall, they help provide a more extensive interface for dealing with multihashes in js. |
js-multistream@diasdavid updated js-multistream to the latest revision of the multistream spec. He also started working on refreshing the API of the module to make it less wonky: this means writing down the entire interface, upgrading js-ipfs-api, leveraging what js-ipfs-api already had previously built, and then running the same batch of tests in both js-ipfs and js-ipfs-api and making sure they all pass. In the future, this means that we have the foundation to build up the rest of the core-api spec. require('lx')@diasdavid gave a talk at require('lx'), a Node and JavaScript meetup in Lisbon. Tweet: https://twitter.com/Sericaia/status/730838055121235968 Also, look at Nuno's talk on Ethereum: https://twitter.com/daviddias/status/730848871329480704 |
orbit-db@haadcode spent the last few days optimizing orbit-db: the write throughput performance is now at ~100ops/s (~33% improvement) and the code base has been fully modularized. orbit-db now uses the following modules as datastores: orbit-db-eventstore, orbit-db-feedstore, orbit-db-kvstore, orbit-db-counterstore. OrbitOrbit also got some love, and @haadcode has been integrating the new orbit-db version into it. As well, there are now new contributors: thanks @masadeus for username auto-complete on 'tab', and thanks @shamb0t for emoji auto-complete and preview. (Emoji auto-complete is not merged yet but will be in the next couple of days). |
go-ipfsThis last week, @whyrusleeping spent a lot of time debugging and fixing the hanging issue with yamux. This is the issue that causes (in at least 90% of observed cases) the gateways and other nodes to hang when simple requests are made on them. He has a patch in place and is waiting on upstream code review to get it pushed in officially. During that process he also did a bunch of gx work, refactored the dependency tree of go-stream-muxer to be more flat, making updating that area of the code easier, and also made Finally, @whyrusleeping fixed and pushed up a perf improvement on go-multiaddr. Previously to create a multiaddr from some bytes, we converted it into a string, and called NewMultiaddr on it which converted it back into bytes. This was eating up an unnecessary amount of CPU time on the gateways. Now we just create it directly. |
common-readme@noffle has been working on common-readme. This is more node-specific than @RichardLitt's standard-readme, and is aimed at making a standard way of presenting information for NPM modules. @noffle and @RichardLitt are going to spend more time working together and trying to make the best readmes they can. |
ipfs-twitter-resolver@noffle made an IPFS Twitter resolver: basically, a tiny CLI server for resolving /twitter/user/key to an IPFS address. It uses npm and ... (expect a blog post soon). |
Newsletter going out the week of May 16.
The text was updated successfully, but these errors were encountered: