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

@pxd-xe/pxd-auth-popup

v1.0.0

Published

A react component that supply pxd auth client

Downloads

1

Readme

@pxd-co/pxd-auth-popup

pxd auth client를 제공하는 react 컴포넌트입니다.

설명

이 프로젝트는 pxd auth client를 제공하는 react 컴포넌트입니다. 현재 버전은 0.1.3입니다.

설치

프로젝트를 설치하려면, 저장소를 클론하고 의존성을 설치할 수 있습니다:

git clone git+https://github.com/pxd-xe-group/pxd-auth-popup.git
cd pxd-auth-popup
npm install

Custom Hook

이 프로젝트는 useLogin.tsxtokenUtils.ts 파일에서 다음 함수들을 제공합니다:

useLogin()

useLogin은 로그인 팝업을 관리하는 함수를 반환하는 훅입니다.

import { useLogin } from "./useLogin";

const { onLogin } = useLogin();
  • onLogin()

    • onLogin(auto: boolean)
    • onLogin 함수는 클릭 시 로그인 팝업을 엽니다.
  • autoLogin()

    • autoLogin()
    • 자동 로그인 함수입니다. 자동 로그인을 원하는 페이지 컴포넌트에서 호출합니다.

Token Utils

getToken()

  • getToken 함수는 저장된 토큰을 가져옵니다. 이 함수는 매개변수가 필요하지 않습니다.
  • 이 함수는 저장된 토큰을 문자열로 반환합니다. 토큰이 없으면 null을 반환합니다.
import { getToken } from "./tokenUtils";

const token = getToken();

decodeToken()

  • decodeToken(token: string)
    • decodeToken 함수는 주어진 토큰을 디코드합니다. 이 함수는 문자열 타입의 토큰을 매개변수로 받습니다.
    • 이 함수는 디코드된 토큰 객체를 반환합니다. 토큰이 유효하지 않으면 오류를 던집니다.
import { decodeToken } from "./tokenUtils";

const decoded = decodeToken("your_token_here");

getDecodedToken()

  • 현재 쿠키 스토리지에 저장되어 있는 토큰을 가져와 디코드합니다.
  • 이 함수는 디코드된 토큰 객체를 반환합니다. 토큰이 유효하지 않으면 오류를 던집니다.
import { getDecodedToken } from "./tokenUtils";

const decodedToken = getDecodedToken();

기여

버그를 발견하거나 기능 요청이 있으면, GitHub 페이지에 이슈를 열어 주세요.