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

@hotmart/hot-login

v0.0.14

Published

Este package tem como finalidade auxiliar a integração com o SSO da Hotmart.

Downloads

15

Readme

Build Status npm version Built With Stencil

hot-login

Este package tem como finalidade auxiliar a integração com o SSO da Hotmart.

Como instalar

Você pode consumir o package via CDN (direto no HTML, sem a necessidade de baixar no projeto) ou adicionando no seu bundle JS, instalando via NPM

CDN (unpkg)

Basta inserir a tag script com o source do package no seu arquivo HTML e os componentes customizados já estarão disponíveis para uso

<script src="https://unpkg.com/@hotmart/hot-login/dist/hot-login/hot-login.esm.js" type="module"></script>

NPM

Instale o package executando:

npm install @hotmart/hot-login

Em seguida, faça a importação do package na raiz da sua aplicação Javascript

import '@hotmart/hot-login/dist/hot-login/hot-login.esm';

Como usar os componentes

Hot Login Button

Este componente de botão tem a única finalidade de redirecionar o usuário para a tela de SSO da Hotmart. Basta chamar o elemento hot-login-button com os seguintes atributos:

<hot-login-button client-id="" redirect-uri="" scopes="" state="" code-challenge=""></hot-login-button>
  • client-id: ClientId disponível na sessão de credenciais da plataforma Hotmart após a criação do service de autenticação. Para solicitar a criação de um service basta preencher o seguinte formulário;
  • redirect-uri: URI de callback cadastrada no service de autenticação. Para consulta-la, acesse as credenciais da plataforma Hotmart;
  • scopes: Escopos de acesso desejados. Ex: developers club sales subscriptions;
  • state: Hash MD5 criado na aplicação back-end responsável por implementar o Hotmart Autenticação. Guia de implementação;
  • code-challenge: Hash SHA256 criado na aplicação back-end responsável por implementar o Hotmart Autenticação. Guia de implementação;

Propriedades

| Property | Attribute | Description | Type | Default | | --------------- | ---------------- | ----------- | -------------------------------- | ----------- | | clientId | client-id | | string | undefined | | redirectUri | redirect-uri | | string | undefined | | scopes | scopes | | string | undefined | | state | state | | string | undefined | | codeChallenge | code-challenge | | string | undefined | | full | full | | boolean | false | | rounded | rounded | | boolean | false | | size | size | | "large" \| "medium" \| "small" | 'medium' | | tab | tab | | string | '0' |

<hot-login-button
  client-id=""
  redirect-uri=""
  scopes=""
  state=""
  code-challenge=""
  full="true"
  rounded="true"
  size="large"
  tab="-1"
></hot-login-button>

Como NÃO usar

Por uma questões de branding e tom de voz, não permitimos a alteração do texto do botão. Sendo assim, as assinaturas a seguir não irá renderizar com sucesso

<hot-login-button>Login com a Hotmart</hot-login-button>
<hot-login-button>
  <span>Login com a Hotmart</span>
</hot-login-button>