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

grenache-nodejs-link-simple

v0.1.2

Published

Granache Node.js Link Simplified

Downloads

335

Readme

grenache-nodejs-link-simple

In Grenache, grenache-nodejs-link-simple communicates with the DHT.

Changes compared to regular link

This repo takes the original grenache-nodejs-link and

  • removes the need to run start().
  • Removes the need to run stop() in case no announcements have been made.

This simplified the api because lookups can now be done directly without any setup/shutdown methods.

Install with:

npm i grenache-nodejs-link-simple

Requirements

Install Grenache Grape: https://github.com/bitfinexcom/grenache-grape:

npm i -g grenache-grape
// Start 2 Grapes
grape --dp 20001 --aph 30001 --bn '127.0.0.1:20002'
grape --dp 20002 --aph 40001 --bn '127.0.0.1:20001'

Class: Link

new Link(options)

  • options <Object> Options for the link
    • grape <String> Address of the Grenache Grape instance. Communication is done via WebSocket or HTTP.
    • requestTimeout <Number> Default timeout for requests to Grape,
    • pingTimeout <Number> Ping connection timeout to Grape (triggers reconnect attempt),
    • lruMaxSizeLookup <Number> Maximum size of the cache, checked by applying the length function to all values in the cache
    • lruMaxAgeLookup <Number> Maximum cache age in ms.

link.start() is deprecated.

link.stop()

Stops all current announces. Doesn't need to be called if no announce has been made.

link.announce(name)

  • name <String> Name of the service, used to find the service from other peers

Used to announce a service, e.g. a RPC Server.

link.startAnnouncing(name, port, [opts])

Keep announcing a service every ~2min (default) or specify interval in opts.interval

link.stopAnnouncing(name, port)

Stop announcing a service

link.put(data, callback)

  • data
    • v: <String> value to store
  • callback <function>

Puts a value into the DHT. Example.

link.putMutable(data, opts, callback)

  • data
    • v: <String> value to store
    • s: <Number> sequence number
  • opts
    • keys: <Object> contains ed25519-supercop private and public key
      • publicKey: <Buffer> public key
      • secretKey: <Buffer> private key
  • callback <function>

Provides sugar for storing mutable, signed data in the DHT.

Example raw put Example with putMutable

link.get(hash | object, callback)

  • hash <String> Hash used for lookup

  • object <Object>

    • hash: <String> Hash used for lookup
    • salt: <String> (optional) salt that was used if data was stored with salt. Required in those cases.
  • callback <function>

Retrieves a stored value from the DHT via a hash <String>. It also supports an object, which is used to pass a previously used salt in order to retrieve the data teh salt was used upon.

Callback returns err <Object> and data <Object>.

Example.

link.lookup(name, [opts], callback)

  • name <String> Name of the service to lookup
  • opts
    • retry: <Number> retry count
  • callback <function>

Retrieves the ports and IPs of a given service name.