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

blockdemy-sso

v0.0.21

Published

A client to handle blockdemy single sign on communication

Downloads

5

Readme

$ yarn add blockdemy-sso
import BlockdemySSO from 'blockdemy-sso'

// SSO_URL is the SSO API Url. 
// It can be changed to use on development with a localhost url
const SSO_URL = 'https://api.id.blockdemy.com'
const API_KEY = '<API_KEY>'

const SingleSignOn = new BlockdemySSO(API_KEY, SSO_URL);

// Examples
const start = async () => {
  const user = await SingleSignOn.getUserById(/* Valid user id */);

  // Use user here
}

In order to use the mongoose plugin to autopopulate users using their ssoId, you just need to add the following into your user schema:

import SingleSignOn from 'path/to/your/blockdemy-sso/instance';

const UserSchema = new Schema({
  /* ... */
  ssoId: { type: Schema.Types.ObjectId }
  /* ... */
});

UserSchema.plugin(SingleSignOn.populateUsers);

Every method corresponds with the GraphQL API query endpoint with the same name They can be checked at our Blockdemy SSO Playground

| Method | params | returns | Description | |--------------------------------------------------------|----------------------------------------------------------|------------------------|----------------------------------------------------------------------| | usersById(ids) | ids: Array[String] | Array[Object] | Recover the list of users given valid ids | | user(id) | id: String | Object | Recover user given a valid id | | userFromToken(token) | token: String | Object | Recover user given a jwt token | | userByUsername(username) | username: String | Object | Recover user given a valid username | | userByAddress(address) | address: String | Object | Retrieve the user that owns an ethereum address | | usernameExists(username) | username: String | Boolean | Indicates if an username has been taken | | userEmailExists(email) | email: String | Boolean | Indicates if an email has been taken and verified | | userHasEthAddress(userId, address) | userId: String, address: String | Boolean | Indicates if an specific user owns an ethereum address | | userEthAddressExists(address) | address: String | Boolean | Indicates if an ethereum address has been taken before | | userSearch(query, filters, params) | query: Object, filters: Object, params: Object | Array[Object] | Recover a list of users given valid filters and parameters for search| | organization(id) | id: String | Object | Recover organization given a valid id | | organizationByIdentifier(identifier) | identifier: String | Object | Recover organization given a valid identifier | | organizationsByIds(ids) | ids: Array[String] | Array[Object] | Recover the list of organizations given valid ids |

| Method | params | returns | Description | |--------------------------------------------------------|-----------------------------------------------------------|------------------------|----------------------------------------------------------------------| | userEdit(userId, user) | userId: String, user: Object | Object | Edit user data and retrieves the new user | | userAddEthAddress(userId, user) | userId: String, address: String, signature: String | Object | Add ethereum address validated with a signature to user | | userEditPassword(userId, newPassword, oldPassword) | userId: String, newPassword: String, oldPassword: String | Object | Change password tu user using its last password to validate |

This project is licensed under the MIT License