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

bill-breeze

v1.0.0

Published

## 1. Introduction The Bill Breeze project mainly provides the parsing of WeChat and Alipay bills, converting PDFs that are not easy to read and write into JSON format. After completing the PDF parsing, we offer some basic functions, such as converting th

Downloads

3

Readme

Bill Breeze

1. Introduction

The Bill Breeze project mainly provides the parsing of WeChat and Alipay bills, converting PDFs that are not easy to read and write into JSON format. After completing the PDF parsing, we offer some basic functions, such as converting the address on the ID card into the actual address. In addition to these basic functions, we also provide some plugins, and you can decide whether to load them or not. For example, it can classify the content of the bills, including categories like transportation, daily life, healthcare, entertainment, financial activities, and so on.

2. How to use

You can use it in either a Node.js environment or a browser environment. Of course, you need to read the PDF content by yourself first and then pass the buffer to Bill Breeze.

yarn add bill-breeze

&

import { BillBreeze } from 'bill-breeze';

// That's the basic usage. We've provided the basic data 
// structure, and you can build your own bill analysis system, 
// tables, and so on.

const billBreeze = new BillBreeze();
billBreeze.load( buffer ).then( data => {
    /**

        userInfo: {
            name: '',
            age: 20,
            gender: 'M',
            birth: ''
            addr: '', 
            idcard: '',
            isWechat: true,
            isAlipay: false,
            wechatID: '',
            billTimeRange: ''
        },
        content: [
            {
                TIME_YMD: '2024-10-07',
                TIME_HIS: '19:31:09',
                TIME_YEAR: '2024'
                TIME_MONTH: '10',
                TIME_DATE: '07',
                TIME: '2024-10-07 19:31:09',
                TYPE: '扫二维码付款',
                IE: '支出',
                _IE: 1,
                TRADING: '银行储蓄卡(9571)',
                AMOUNT: 15,
                PARTY: '张三'
            },
            {
                ....
            }
        ]
     */
});

3. Plugins

Coming soon, Of course, you can also use our free online bill parsing service. Next, we'll provide an online API, which enables a quicker integration.

This bill parsing service is mainly provided for the leasing industry. If your industry also has similar needs, you can contact us for customized services. Our phone number is the same as our WeChat number: 18058810726.