New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

crytter

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

crytter

distributed peer to peer social networking feeds

latest
Source
npmnpm
Version
0.0.3
Version published
Maintainers
1
Created
Source

crytter

distributed peer to peer social networking feeds

This module uses append-only which uses scuttlebutt so you can make posts to your feed offline or while only connected to some subset of your followers and when you come back your feeds will be integrated in an eventually consistent ordering across all nodes.

example

Start the server on port 5000:

$ crytter 5000

then start another server on 5001 to replicate with the first:

$ crytter 5001 http://localhost:5000/replicate

Then send POSTs to either server:

$ curl -X POST -d 'beep boop' localhost:5000/freddeth
$ curl -X POST -d 'doom' localhost:5000/maccery
$ curl -X POST -d 'oh hello' localhost:5000/maccery

and watch the feeds replicate in realtime:

# freddeth{F69D44EBFCED52F8CE326E98}               1353913432877
  beep boop
# maccery{F69D44EBFCED52F8CE326E98}                1353913449838
  doom
# maccery{C399719DCEE9CDB9A5B170F8}                1353913458680
  oh hello.

todo

These commands should eventually be implemented, along with public key encryption and signing:

crytter relay MESSAGE {--ring RINGNAME | --name NAME}
crytter upload FILENAME {--ring RINGNAME | --name NAME}
crytter search  QUERY {--ring RINGNAME | --name NAME}

crytter user add NAME PUBKEY
crytter user search NAME
crytter user list

crytter ring add RINGNAME
crytter ring rm RINGNAME
crytter ring list
crytter ring useradd NAME RINGNAME
crytter ring userdel NAME RINGNAME
crytter ring userlist RINGNAME

crytter profile generate NAME
crytter profile add NAME PUBKEY PRIVKEY
crytter profile rm NAME
crytter profile list

crytter config set network-quota VALUE {--ring RINGNAME | --name NAME}
crytter config set storage-quota VALUE {--ring RINGNAME | --name NAME}
crytter config get KEY VALUE {--ring RINGNAME | --name NAME}
crytter config list {--ring RINGNAME | --name NAME}

crytter peer add HOSTNAME
crytter peer rm HOSTNAME
crytter peer list

install

To get the crytter command, with npm do:

npm install -g crytter

license

MIT

Keywords

p2p

FAQs

Package last updated on 08 May 2013

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