node
/
0.0.23-5
node 0.0.23-5
Install from the command line:
Learn more about npm packages
$ npm install @topology-foundation/node@0.0.23-5
Install via package.json:
"@topology-foundation/node": "0.0.23-5"
About this version
This package provides the implementation of a Topology Node, which is a node in a network that can be connected to other nodes and exchange messages with them. The Topology Node is the entrypoint for interacting with the Topology Protocol in the Topology Network.
Topology Node can be used using the CLI or integrated into an existing application.
The CLI provides a simple way to start a Topology Node and connect it to other nodes in the network. It can be installed globally using:
# yarn
yarn global add @topology-foundation/node
# npm
npm install -g @topology-foundation/node
This part is a lie, the cli is being developed.
For more information on what are the commands available, run:
topology-node --help
To integrate the Topology Node into an existing application, you can install it using:
# yarn
yarn add @topology-foundation/node
# npm
npm install @topology-foundation/node
Then, you can import the Topology Node class and create a new instance:
import { TopologyNode } from '@topology-foundation/node';
const node = new TopologyNode();
// Start the node
node.start();