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

@fewlines/connect-popup

v0.2.1

Published

Library to use Connect in a Popup

Downloads

6

Readme

Connect JS Popup

This package allow the use of Connect inside the browser via a popup window. That way, the authentication of the User can be done without leaving the website where they are.

Usage

This package can be used either as a classical package or directly in the browser as a <script>.

You need to create a new ConnectPopup instance with the options your want and then you can add openConnectPopup({state: string}) as a listener on a click event on the HTML element you want.

⚠️ You need to associate the openConnectPopup function to a User action. Trying to call the function automatically will result in a blocked popup from the browser.

Package usage

yarn add @fewlines/connect-popup
import ConnectPopup from "@fewlines/connect-popup";

const login = new ConnectPopup({
  connect: {
    providerURL: YOUR_PROVIDER_URL,
    clientId: YOUR_CLIENT_ID,
    scopes: "email phone",
  },
  onAuthorizationCodeReceived: (code, state) => {
    // Do something with the Authorization Code and State
  },
});

document
  .getElementById("login") // Assuming you have a button with id `login`
  .addEventListener(
    "click",
    login.openConnectPopup({ state: "Anything you want as a state" })
  );

Script usage

You could use unpkg or host the library yourself.

<button id="login">Connect with your Provider Account</button>

<script
  type="text/javascript"
  src="https://unpkg.com/@fewlines/connect-popup@latest/dist/connect-popup.min.js"
></script>
<script type="text/javascript">
  const login = new ConnectPopup({
    connect: {
      providerURL: YOUR_PROVIDER_URL,
      clientId: YOUR_CLIENT_ID,
      scopes: "email phone",
    },
    onAuthorizationCodeReceived: (code, state) => {
      // Do something with the Authorization Code and State
    },
  });
  document
    .getElementById("login")
    .addEventListener(
      "click",
      login.openConnectPopup({ state: "Anything you want as a state" })
    );
</script>

Options

When initializing ConnectPopup you can customize those options:

  • connect, required an object containing:
    • providerURL, required, the URL of your Connect Provider. It must start with the protocol and must not end with a path.
    • clientId, required, the client ID of your Connect Application.
    • scopes, required, the space-separated list of scopes for your Connect Application.
  • popup, an optional object containing:
    • width, the width of the popup window (default: 450px).
    • height, the height of the popup window (defaults to half of the screen).
    • top, the distance from the top of the screen to the popup window (defaults to the value that make the popup centered relative to the screen).
    • left, the distance from the left of the screen to the popup window (defaults to the value that make the popup centered relative to the screen).
  • onAuthorizationCodeReceived, a callback that will be called once the Authorization Code and State are received. This is called just before closing the popup.