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

@hypernetlabs/web-integration

v0.6.19

Published

This package provides an SDK that a Hypernet Protocol-enabled application, such as Galileo, would use on their website. This package creates a Postmate parent proxy for Hypernet Core, instantiating and connecting to the `iframe` package. This proxy implem

Downloads

21

Readme

web-integration

This package provides an SDK that a Hypernet Protocol-enabled application, such as Galileo, would use on their website. This package creates a Postmate parent proxy for Hypernet Core, instantiating and connecting to the iframe package. This proxy implements the IHypernetCore interface and from an end-user standpoint should act functionally identical to having a proper HypernetCore instance. This package provides access to this proxy, but the vast majority of users will not need to use it. Instead, the package provides a number of pre-built UI widgets, along with easy utility functions, that make it trivial to display information from HNC.

In ordinary practice, an application such as Galileo that wants to display information (or retrieve it) about the user's Hypernet Protocol status, will include this package and make use of the UI widgets it provides, placing them on its own page. This package ONLY works for Single Page Applications (SPAs), as Hypernet Core takes some time to startup and establish itself. Applications built using older techniques with frequent reloads will NOT work with this package OR with Hypernet Protocol; it requires a long-running environment to be efficient. If you are trying to use HNP on such a site it is recommended to create a wrapper frame for your application that hosts the web-integration package, and put your legacy app inside an iframe in the wrapper or use AJAX techniques. Converting a legacy site to a SPA is beyond the scope of this documentation but IS possible.

Get started

Installation

install via yarn yarn add @hypernetlabs/web-integration

install via npm npm install @hypernetlabs/web-integration

How to integrate

calling getReady would be enough to initialize the core but in order to get the user onboarded and be able to use his crypto in payments you need to call startOnboardingFlow in webUIClient which will open hypernet protocol UI modal built in with react.

Here is the full implementation of that:

import HypernetWebIntegration from "@hypernetlabs/web-integration";

const integration = new HypernetWebIntegration();


integration.getReady().map((coreProxy) => {
    integration.webUIClient.startOnboardingFlow({
        gatewayUrl: gatewayUrl,
        finalSuccessContent: 'Awesome, you can buy credits with your crypto now!',
        showInModal: true,
    }).mapErr((err) => {
      console.log("startOnboardingFlow error", err);
    });
}).mapErr((err) => {
  console.log("getReady error", err);
});

The onBoardingFlow diagram is like below:

alt