Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ipfs-block

Package Overview
Dependencies
Maintainers
2
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ipfs-block

JavaScript Implementation of IPFS Block

  • 0.2.1
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

IPFS Block JavaScript Implementation

Travis CI Circle CI Coverage Status Dependency Status js-standard-style

IPFS implementation of the Block data structure in JavaScript.

Description

Block - A block is a blob of binary data.

Example

const Block = require('ipfs-block')

// create a block
const block = new Block('hello world')
console.log(block.data)
console.log(block.key)

Installation

npm

> npm i ipfs-block

Setup

Node.js

const Block = require('ipfs-block')

Browser: Browserify, Webpack, other bundlers

The code published to npm that gets loaded on require is in fact a ES5 transpiled version with the right shims added. This means that you can require it and use with your favourite bundler without having to adjust asset management process.

var Block = require('ipfs-block')

Browser: <script> Tag

Loading this module through a script tag will make the IpfsBlock obj available in the global namespace.

<script src="https://npmcdn.com/ipfs-block/dist/index.min.js"></script>
<!-- OR -->
<script src="https://npmcdn.com/ipfs-block/dist/index.js"></script>

API

const Block = require('ipfs-block')

Block

new Block(data, [type])

Creates a new block with raw data data. type can be either 'protobuf' or 'ipld'

block.data

The raw data of the block. Its format matches whatever was provided in its constructor.

block.key

The multihash of the block's data, as a buffer.

block.extension

The extension on how to store the blog, depends on the type:

  • 'protobuf': 'data'
  • 'ipld': 'ipld'

License

MIT

Keywords

FAQs

Package last updated on 30 Apr 2016

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc