Neople SDK
네오플 오픈 API를 위한 TypeScript/JavaScript SDK
네오플 오픈 API에 쉽고 안전하게 접근하세요. 타입 안전성과 다양한 HTTP 어댑터를 지원합니다.
📝
TypeScript 지원
모든 API에 대한 타입 안전성과 자동완성
🔧
다중 HTTP 어댑터
Fetch, Axios, Got, Node-fetch 어댑터 지원
빠른 시작
설치
npm install neople-sdk-js
npm install neople-sdk-js
사용법 - 던전앤파이터
import { NeopleDFClient } from 'neople-sdk-js';
const client = new NeopleDFClient(apiKey);
const characters = await client.searchCharacter('홍길동');
import { NeopleDFClient } from 'neople-sdk-js';
const client = new NeopleDFClient(apiKey);
const characters = await client.searchCharacter('홍길동');
사용법 - 사이퍼즈
import { NeopleCyphersClient } from 'neople-sdk-js';
const client = new NeopleCyphersClient(apiKey);
const players = await client.searchPlayer('홍길동');
import { NeopleCyphersClient } from 'neople-sdk-js';
const client = new NeopleCyphersClient(apiKey);
const players = await client.searchPlayer('홍길동');