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

@foxql/foxql-peer

v1.4.0

Published

Decentralized web apps over web2.

Downloads

124

Readme

FoxQL

FoxQL allows you to create decentralized applications using WEB2 technologies.

  • FoxQL applications have a chaotic environment by its nature.
  • The availabilty of the data depends on the accessbility of the node. In other words, the query may happen at t time.
  • You can use tokens as a reward to proof the accessbility and availabilty of the data.
  • FoxQL is relatively centralized in the process of signaling . Since signaling is a cheap solution, it's not a big deal. Communication does happen as long as you want.
  • Every action you take is going to produce a new hash query. The time you take to answer the question and cryptographic nonce is going to determine the difficulty of the action.
  • FoxQL doesn't interact with other nodes unless it is needed. Nodes terminate the connection when they are done, and wait for the next connection.This means performance issues and limitations of WebRTC doesn't matter.
  • End-user can transfer their data to other platforms at will. This ensures that platform owners can't affect them badly.
  • FoxQL doesn't store any log. It does not track any data transaction between nodes. It only ensures that queries are forwarded to other nodes and a new connection race begins.

Installation

import foxql from "@foxql/foxql-peer";

const node = new foxql({
  maxNodeCount: 30, // max connection limit
  maxCandidateCallTime: 2000, // how long to wait for a response from a candidate node
  powPoolingTime: 1000,
  dappAlias: 'demo-app'
});

Change Websocket Options

import foxql from "@foxql/foxql-peer";

const node = new foxql({
  dappAlias: 'demo-app',
  wssOptions: {
    transport: ['websocket'],
    jsonp: false
  }
});

Node meta data

node.setMetaData({
  name: "test-node",
  description: "test-desc",
});

Event Definition

Event definition is used to establish p2p communication and data transactions. Every event has two phases. simulate means that the event is fetched over webSocket.

node.on("hello-world", async ({ sender, message }, simulate = false) => {
  if (simulate) {
    console.log("Simulate state");
    // work on proof case
    return true; // accept webRTC connection.
  }
  // webRTC
  this.reply(sender, {
    hi: this.nodeId,
  });
});

Node Discovery

async function broadcast() {
  const answer = await node.ask({
    transportPackage: {
      p2pChannelName: "hello-world",
      message: "Hello world",
    },
  });
  return answer;
}

Local Discovery

By default, every discovery query you make on the network is forwarded again to all nodes you are connected to. In some cases, you can only redirect the queries to new candidate nodes. This node reduces the traffic.

node.ask({
  transportPackage: {
    p2pChannelName: "hello-world",
    message: "Hello world",
  },
  localWork: true,
});

Sticky Nodes

stickyNode option is used to establish constant connection between nodes. This option is useful when you want to establish a permanent connection between nodes. FoxQL will terminate the connection after every discovery.

node.ask({
  transportPackage: {
    p2pChannelName: "hello-world",
    message: "Hello world",
  },
  stickyNode: true,
});

Starting a Node

node.start();

Contribute

If you'd like to contribute, please fork the repository and make changes as you'd like. Pull requests are warmly welcome.

Lisence

MIT