npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

flowchain.js

v0.5.0

Published

> Flowchain distributed ledgers in JavaScript

Downloads

2

Readme

flowchain-ledger

Flowchain distributed ledgers in JavaScript

Build Status

Flowchain-ledger is a distributed ledger technology (DLT) for the Internet of Things (IoT) devices (aka. IoT Blockchain). The Flowchain software framework is designed from the ground up to fit current IoT needs.

This is the official Flowchain distributed ledger library, which provides the following APIs:

  • Create data transactions
  • Submit data transactions

About Flowchain

Flowchain is a software framework for the IoT blockchain to provide a distributed ledger programming framework for peer-to-peer IoT networks and real-time data transactions, and flowchain-ledger is the Node.js distribution for heterogeneous hardware devices, such as MediaTek LinkIt Smart 7688, Raspberry Pi, laptops, smart phones and etc.

Abstract

Flowchain aims to implement a blockchain that can provide near real-time transactions for the IoT. The Flowchain technology can ensure chunked data (data streams) transactions by using the virtual blocks concept which is proposed by Flowchain acamedic papers. The virtual blocks can be combined with emerging public blockchains, such as Ethereum and Hyperledger which is optimized specifically for the use case of off-chain transactions. If you need such "Hybrid Blockchain" network for the IoT, please refer to flowchain-hybrid.

The FlowchainCoin (symbol: FLC) is the Ethereum ERC20 token for tokenized assets that use in the Flowchain network. Tokens offer can support the transfer of assets from one trusted party to another.

Features

  • Mining-based Proof-of-Stake (PoS)
  • Run on every IoT node
  • RPC over the Websocket protocol
  • Distributed Hash Table (DHT) by the Chord protocol
  • The device server in Web of Things (WoT) architecture

Prerequisite

Getting started

Install the Flowchain distributed ledger via npm.

npm install flowchain-ledger

Create the boot.js file and use flowchain-ledger to submit a data transaction.

var PeerNode = require('flowchain-ledger').PeerNode;
var node = new PeerNode();;
node.submit(data);

Please use flowchain-hybrid which is the blockchain application built on flowchain-ledger.

Install via Github

You can also download this repo.

$ git clone https://github.com/flowchain/flowchain-ledger.git
$ cd flowchain-ledger
$ npm install

Configuration

$ export HOST=192.168.1.1
$ export PORT=8000
$ node boot.js

The boot node is now running at the address 192.168.1.1:8000. Please modify the IP address and listening port number to match your own environment. Subsequently, to start a peer node and join the boot node:

$ export HOST=192.168.1.2           ; Peer Node (My IP address)
$ export PORT=8001                  ; Peer Node (My listening port)
$ export PEER_ADDR=192.168.1.1      ; Boot Node (The node intend to join)
$ export PEER_PORT=8000             ; Boot Node (The node intend to join)
$ node peer.js                      ; Start the new peer node

The new peer node will run at the address 192.168.1.2:8001, and subsequently join the boot node at the address 192.168.1.1:8000. The peer node will intend to join the p2p network. Furthuremore, you can start another peer node and join the p2p network through the boot node or one of the peer nodes. For example, to start another peer node and join the peer node at 192.168.1.2:8001:

$ export HOST=192.168.1.2
$ export HOST=8002
$ export PEER_ADDR=192.168.1.2
$ export PEER_PORT=8001
$ node peer.js

Publication

Presentation

Bibliography

This work is based on the research papers.

[1] Chen, J. (2017). Flowchain: A Distributed Ledger Designed for Peer-to-Peer IoT Networks and Real-time Data Transactions. In: 2nd International Workshop on Linked Data and Distributed Ledgers. Portoroz.

[2] Chen, J. (2017). Devify: Decentralized Internet of Things Software Framework for a Peer-to-Peer and Interoperable IoT Device In: Advances in IoT Architecture and Systems. Toronto, Canada.

How to Cite

@article{flowchain_2017,
title={Flowchain: A Distributed Ledger Designed for Peer-to-Peer IoT Networks and Real-time Data Transactions},
journal={Proceedings of the 2nd International Workshop on Linked Data and Distributed Ledgers (LDDL2)},
author={Chen, Jollen},
year={2017}
},

@article{devify_2017,
title={Devify: Decentralized Internet of Things Software Framework for a Peer-to-Peer and Interoperable IoT Device},
journal={Proceedings of the Workshop on Advances in IoT Architecture and Systems (AIoTAS2017)},
author={Chen, Jollen},
year={2017}
},

License

Copyright (C) 2016-present Jollen. The source code is licensed under the MIT license found in the LICENSE file.