@pickk/sens
v1.1.1
Published
NCP SENS client for nodejs
Downloads
179
Readme
이 모듈은 Naver Cloud Platform에서 제공하는 Simple & Easy Notification Service(SENS) API를 Node.js®로 구현한 클라이언트입니다. NCP SENS의 개발 가이드는 여기를 참고하시기 바랍니다.
- 💙 Typescript support
- 📦 5kb mini library
- 👫 All browsers supported
- 🏃 Currently maintaining
Requirements
- nodejs >= 12
Installation
$ npm install --save @pickk/sens
# or
$ yarn add @pickk/sens
Features
- SMS
- send
- Alimtalk
- send
Usage
import { SmsClient } from '@pickk/sens';
const smsClient = new SmsClient({
accessKey: 'your-access-key',
smsServiceId: 'your-sms-service-id',
smsSecretKey: 'your-sms-secret-key',
callingNumber: 'your-calling-number',
});
await smsClient.send({
to: ['01012341234', '01043214321'],
content: 'Hello Sens!',
});
Author
Contribution
- 이 프로젝트는 누구나 참여 가능합니다.
- 버그나 개선점 및 의견 등은 이슈 및 Pull Request를 활용해주세요.
Links
- NCP SENS 공식 사이트: https://www.ncloud.com/product/applicationService/sens
- NCP SENS 개발 가이드: https://guide.ncloud-docs.com/docs/ko/sens-sens-1-1
License
This Package is MIT licensed.