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

luna-alimtalk

v1.3.3

Published

lunasoft alimtalk

Downloads

20

Readme

luna alimtalk

루나소프트의 알림톡을 보내기 위한 nodejs 라이브러리입니다.

Install

npm install luna-alimtalk

Example

import Luna from 'luna-alimtalk';

const { sendWithAppUserId, sendWithPhone } = Luna(process.env.ALIMTALK_USERID, process.env.ALIMTALK_APIKEY);

const sendAlimtalk = async () => {
	const message = '[[service]]\n[nickname]님 안녕하세요.\n오늘 미세먼지는 [dust_state]입니다.';

	// send with kakao profile id to a single user
	await sendWithAppUserId('XXXXXXXX', 'YYYYY', message, { service: '날씨알리미', nickname: '김개똥', dust_state: '좋음' });
	// send with kakao profile id to multiple users
	await sendWithAppUserId(['XXXXXXXX1', 'XXXXXXXX2', 'XXXXXXXX3'], 'YYYYY', message, { service: '날씨알리미', nickname: '김개똥', dust_state: '좋음' });

	// send with phone number to a single user
	await sendWithPhone('010XXXXXXXX', 'YYYYY', message, { service: '날씨알리미', nickname: '김개똥', dust_state: '좋음' });
	// send with phone number to multiple users
	await sendWithPhone(['010XXXXXX1', '010XXXXXX2', '010XXXXXX3'], 'YYYYY', message, { service: '날씨알리미', nickname: '김개똥', dust_state: '좋음' });
};

API

Luna(user_id, api_key)

  • user_id string 루나소프트에 알림톡 신청 시 발급.
  • api_key string 루나소프트에 알림톡 신청 시 발급.

sendWithAppUserId(contacts, template_id, message, params, btn_urls)

sendWithPhone(contacts, template_id, message, params, btn_urls)

  • contacts string | string[] 앱유저 아이디. sendWithAppUserId 이용 시 카카오 로그인 시 리턴되는 고유아이디. sendWithPhone 이용 시 사용자의 전화번호.
  • template_id string 템플릿 등록시 발급되는 아이디. 템플릿 목록 화면에서 확인할 수 있음.
  • message string 등록한 템플릿 메시지.
  • params object message에 들어갈 변수.
  • btn_urls object | object[]
    • url_pc string
    • url_mobile string