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

receipt-lottery-taiwan

v0.0.4

Published

Getting winning numbers of Taiwan Receipt Lottery (Node.js)

Downloads

5

Readme

receipt-lottery-taiwan

Getting winning numbers of Taiwan Receipt Lottery (Node.js)

Example

var ReceiptLottery = require('receipt-lottery-taiwan');

ReceiptLottery.query(function (err, info) {
  if (err) {
    console.error(err.stack);
    return;
  }

  console.log(JSON.stringify(info, null, 2));
});

JSON Format

{
  "new": {
    "title": "105年03-04月",
    "super": {
      "name": "特別獎",
      "description": "同期統一發票收執聯8位數號碼與上列號碼相同者獎金1,000 萬元",
      "numbers": [
        "18498950"
      ]
    },
    "special": {
      "name": "特獎",
      "description": "同期統一發票收執聯8位數號碼與上列號碼相同者獎金200 萬元",
      "numbers": [
        "08513139"
      ]
    },
    "first": {
      "name": "頭獎",
      "description": "同期統一發票收執聯8位數號碼與上列號碼相同者獎金20 萬元",
      "numbers": [
        "21881534",
        "53050416",
        "85174778"
      ]
    },
    "second": {
      "name": "二獎",
      "description": "同期統一發票收執聯末7 位數號碼與頭獎中獎號碼末7 位相同者 各得獎金4 萬元",
      "numbers": []
    },
    "thrid": {
      "name": "三獎",
      "description": "同期統一發票收執聯末6 位數號碼與頭獎中獎號碼末6 位相同者各得獎金1 萬元",
      "numbers": []
    },
    "fourth": {
      "name": "四獎",
      "description": "同期統一發票收執聯末5 位數號碼與頭獎中獎號碼末5 位相同者各得獎金4 千元",
      "numbers": []
    },
    "fifth": {
      "name": "五獎",
      "description": "同期統一發票收執聯末4 位數號碼與頭獎中獎號碼末4 位相同者各得獎金1 千元",
      "numbers": []
    },
    "sixth": {
      "name": "六獎",
      "description": "同期統一發票收執聯末3 位數號碼與頭獎中獎號碼末3 位相同者各得獎金2 百元",
      "numbers": []
    },
    "addition": {
      "name": "增開六獎",
      "description": "同期統一發票收執聯末3 位數號碼與上列號碼相同者各得獎金2 百元",
      "numbers": [
        "086"
      ]
    }
  },
  "old": {
    "title": "105年01-02月",
    "super": {
      "name": "特別獎",
      "description": "同期統一發票收執聯8位數號碼與上列號碼相同者獎金1,000 萬元",
      "numbers": [
        "51730762"
      ]
    },
    "special": {
      "name": "特獎",
      "description": "同期統一發票收執聯8位數號碼與上列號碼相同者獎金200 萬元",
      "numbers": [
        "67442563"
      ]
    },
    "first": {
      "name": "頭獎",
      "description": "同期統一發票收執聯8位數號碼與上列號碼相同者獎金20 萬元",
      "numbers": [
        "11036956",
        "55794786",
        "62610317"
      ]
    },
    "second": {
      "name": "二獎",
      "description": "同期統一發票收執聯末7 位數號碼與頭獎中獎號碼末7 位相同者各得獎金4 萬元",
      "numbers": []
    },
    "thrid": {
      "name": "三獎",
      "description": "同期統一發票收執聯末6 位數號碼與頭獎中獎號碼末6 位相同者各得獎金1 萬元",
      "numbers": []
    },
    "fourth": {
      "name": "四獎",
      "description": "同期統一發票收執聯末5 位數號碼與頭獎中獎號碼末5 位相同者各得獎金4 千元",
      "numbers": []
    },
    "fifth": {
      "name": "五獎",
      "description": "同期統一發票收執聯末4 位數號碼與頭獎中獎號碼末4 位相同者各得獎金1 千元",
      "numbers": []
    },
    "sixth": {
      "name": "六獎",
      "description": "同期統一發票收執聯末3 位數號碼與頭獎中獎號碼末3 位相同者各得獎金2 百元",
      "numbers": []
    },
    "addition": {
      "name": "增開六獎",
      "description": "同期統一發票收執聯末3 位數號碼與上列號碼相同者各得獎金2 百元",
      "numbers": [
        "079"
      ]
    }
  }
}

License

MIT