Coder Social home page Coder Social logo

n2n's Introduction

#A Node.js P2P Network

##Starting a seed One or several seed servers are required to bootstrap the network. To start a seed server listening 6785:

var Seed = require('n2n').Seed;

var seed = new Seed();
seed.listen(6785);
console.log('Seed listening 6785...');

##Starting a node The following code snippet starts a node by connecting to the seed server seed.com:6785. If the node has a public IP, it will start a seed server listening 6785, as well.

var Node = require('n2n').Node;
var node = new Node(6785);
node.connect([{ host: 'seed.com', port: 6785 }]);

Once the node gets online, the event online will be emitted.

node.on('online', function () {
  console.log('I am online:', this.id);
});

Event node::online means another node gets online. A object representing the new node will be passed to event handlers:

node.on('node::online', function (newNode) {
  console.log('Someone is online:', newNode.id);
});

##Communication Nodes communicate via events.
###Node#send(targetId:string, eventName:string, [data:]) Emit a custom event called eventName on a specific node. ###Node#broadcast(eventName:string, [data:]) Emit a custom event called eventName on all nodes online.

###Handling custom events The name of custom events must be prefixed with 'node::'. If any, event data will be passed to event handlers:

node.on('node::hello', function (senderId) {
  console.log('Hello from', senderId);
});

n2n's People

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.