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

@kobalab/tenhou-url-log

v1.0.2

Published

電脳麻将の牌譜を天鳳JSON形式に変換

Downloads

318

Readme

tenhou-url-log

電脳麻将の牌譜を天鳳JSON形式に変換

電脳麻将牌譜天鳳 のJSON形式(https://tenhou.net/6/ 形式)の牌譜に変換します。

インストール

コマンドラインから使用する場合

$ npm i -g @kobalab/tenhou-url-log

ライブラリとして使用する場合

$ npm i @kobalab/tenhou-url-log

使用例

コマンドラインから

$ tenhou-url-log 電脳麻将牌譜.json

ライブラリとして

const logconv = require('@kobalab/tenhou-url-log');

let url = 'https://tenhou.net/6/#json'
                    + encodeURI(JSON.stringify(logconv(paipu, 0)));

コマンドライン仕様

tenhou-url-log paipu.json [ log-idx ]

paipu.json を入力の電脳麻将牌譜とし、標準出力に変換した天鳳のJSON形式の牌譜を出力する。 log-idx を指定した場合は指定された局(東一局0本場を0と数える)のみ http://tenhou.net/6/#json= を付加した形式で出力する。 log-idx を省略した場合は全局をJSON形式で出力する。

API仕様

logconv()

  • paipu - 牌譜
  • log_idx - number (省略可)
  • rule - object (省略可)
  • 返り値 - object

paipu で指定された牌譜を天鳳のJSON形式の牌譜に変換し、Objectとして返す。 log_idx を指定した場合は指定された局(東一局0本場を0と数える)のみ、log_idx を省略した場合は全局を変換する。 rule には牌譜の rule プロパティに埋め込む値を指定できる。 省略時は { disp: '電脳麻将', aka: 1 } とする。

ライセンス

MIT

作者

Satoshi Kobayashi

謝辞

本パッケージは kobalab/Majiang#118 をきっかけに開発しました。 きっかけを与えていただいた Apricot S. さんに感謝します。 また、本パッケージの開発に際し、同氏の majiang-log を参考にさせていただきました。