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 🙏

© 2025 – Pkg Stats / Ryan Hefner

bizmailer

v0.0.3

Published

BIZMAILER Node.js Library

Downloads

3

Readme

BIZMAILER Node.js Library

소개

BIZMAILER 의 기능을 Node.js 에서 사용할 수 있도록 만든 라이브러리입니다.

지원기능

  1. SMS 전송 기능

라이브러리 사용 조건

  • ES6

빠른 시작

설치 방법

npm install bizmailer

문자 전송

비즈 메일러 설정

문자를 보내기 위해서는 비즈메일러에서 자동발송 메시지를 추가하여야 사용하실 수 있습니다. 비즈메일러에서 자동발송 -> 새 자동발송 추가 -> 자동 SMS/MMS 만들기 순으로 접속한 후 템플릿 이름, 발신자 번호, SMS 제목을 입력 후 내용 입력 부분에 {{c1}}{{c2}}{{c3}}{{c4}}{{c5}}{{c6}} 를 넣어줍니다

메시지를 전송할때 245바이트 이상 문자를 적게 되면, 245바이트 까지는 비즈메일러 데이터베이스에 저장이 되지만 그 이상의 텍스트는 문자 메시지 내용에 포함되어 전송이 되나 비즈메일러 데이터 베이스에 저장이 되지 않습니다.

코드
const BizMailer = require('bizmailer');

const bizMailer = new BizMailer('비즈 메일러 아이디');
bizMailer.sendSMS('문자 자동발송 아이디', {mobile: '01000000000', message: '안녕하세요 사람 입니다 지금은 문자 테스트 중 입니다!'});
결과 확인

성공의 경우 어떻게 비즈메일러에 요청하였는지(params) 성공(success)가 반환되며 실패의 경우 에러가 throw 됩니다

const result = bizMailer.sendSMS();

// 성공 예
result == {
    success: true,
    params: {
        auth_key: 'AUTH_KEY',
        biz_id: 'BIZ_ID',
        memo_1: '안녕하세요 사람 입니다 지금은 문자 테스트 중 입니다!',
        m_mobile: '01000000000'
    }
}

비즈메일러에서 확인하기 위해서는 결과 확인 메뉴에서 결과를 확인하실 수 있습니다.