🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis
Socket
Book a DemoInstallSign in
Socket

bsm-oauth-node

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bsm-oauth-node

> bsm-oauth-node는 BSM Oauth를 간편하게 개발할 수 있도록 도와주는 라이브러리입니다.

latest
Source
npmnpm
Version
1.1.4
Version published
Weekly downloads
3
50%
Maintainers
1
Weekly downloads
 
Created
Source

bsm-oauth-node

bsm-oauth-node는 BSM Oauth를 간편하게 개발할 수 있도록 도와주는 라이브러리입니다.

설치

npm install bsm-oauth-node
pnpm add bsm-oauth-node
yarn add bsm-oauth-node

사용 예시

import BsmOauth from 'bsm-oauth-node';

const bsmOauth = new BsmOauth({
  clientId: '클라이언트 아이디',
  clientSecret: '클라이언트 시크릿 키',
});

const login = async (authCode: string) => {
  const token = await bsmOauth.token.get(authCode);
  const user = await bsmOauth.user.get(token);

  console.log(user); // 유저의 정보
};

예정 작업

  • 생성부터 개발까지 전반적인 가이드를 제공해주는 문서 개발
  • BSM Oauth 연결 예제 프로젝트 개발
  • 변수명 맵핑 모듈 개발
  • 테스트 코드 작성

LICENSE

MIT © SEOKKAMONI, Inc. See LICENSE for details.

FAQs

Package last updated on 16 Mar 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts