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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@barobill-sdk/ti

v1.0.3

Published

바로빌 전자세금계산서 API SDK

Readme

@barobill-sdk/ti

바로빌 전자세금계산서 API TypeScript SDK (비공식)

이 패키지는 바로빌의 공식 SDK가 아닌, 비공식 SDK입니다. 바로빌 API의 공식 문서는 바로빌 API 레퍼런스를 참고해 주세요.

설치

npm i @barobill-sdk/ti

사용법

import { TiClient } from '@barobill-sdk/ti';

const client = await TiClient.create({
  certKey: 'your-cert-key',
  corpNum: '1234567890', // 기본 사업자등록번호 (선택)
  test: true,            // true: 테스트 환경 (기본값: false)
});

const result = await client.registAndIssueTaxInvoice({
  Invoice: {
    InvoicerParty: {
      MgtNum: '20240101-001',
      CorpNum: '1234567890',
      CorpName: '테스트회사',
      // ...
    },
    InvoiceeParty: {
      CorpNum: '0987654321',
      CorpName: '거래처',
      // ...
    },
    // ...
  },
});
  • certKey: 바로빌 인증키
  • corpNum (선택): 기본 사업자등록번호. 설정하면 API 호출 시 자동 주입됩니다.
  • test: true이면 테스트 환경, false이면 운영 환경

주요 메서드

| 분류 | 메서드 | |------|--------| | 등록/발행 | registTaxInvoice, issueTaxInvoice, registAndIssueTaxInvoice 등 | | 수정 | registModifyTaxInvoice, updateTaxInvoice 등 | | 삭제 | deleteTaxInvoice, deleteTaxInvoiceIk | | 조회 | getTaxInvoice, getTaxInvoiceState, getTaxInvoiceStates, getTaxInvoiceLog 등 | | 첨부파일 | attachFileByFTP, attachFilesByFTP, deleteAttachFile, getAttachedFileList | | 전송 | sendEmail, sendSMS, sendFax 등 | | URL | getTaxInvoicePrintURL, getTaxInvoiceMailURL, getBaroBillURL | | 유틸 | getErrString, ping |

관련 링크

License

ISC