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

classwiz-qr

v0.3.2

Published

ClassWiz QR Parser

Downloads

1,881

Readme

ClassWiz QR

Standalone ClassWiz QR Code parser, no CASIO server needed.

GitHub: https://github.com/CalcWorld/ClassWizQR

Online Demo: https://cwqr.pages.dev

API Documentation: https://cwqr.pages.dev/api

A detailed explanation of how QR works on ClassWiz (Chinese Only)

ClassWiz QR 功能原理详解

Installation

npm install classwiz-qr
import { ClassWizQR, parseUrl } from 'classwiz-qr';

Implemented Features

  • Internationalization (i18n) implemented
  • Optimized adaptations for specific calculator models, such as JP models
  • Support for ClassWiz EX, ClassWiz CW and ClassWiz CW 2nd edition series calculators
  • Detailed information on the calculator model, settings, and active modes or errors
  • Natural display input and output rendered as LaTeX formulas in Calculate, Complex, Verify and other modes
  • LaTeX and tabular representation of equations and results in Equation, Inequality, and Ratio modes
  • LaTeX and tabular representation of vector and matrix data
  • Data entered in Spreadsheet, Table, Distribution, and Statistics modes, with CSV export support
  • Defined functions, table range and variables in Table mode
  • Supports showing Algorithm mode commands in LaTeX, plain text, and Scratch block formats

Wiki

See https://github.com/CalcWorld/ClassWizQR/wiki

API

Send the decoded ClassWiz QR URL to the hosted API as JSON:

curl --request POST 'https://cwqr.pages.dev/api' \
  --header 'Content-Type: application/json' \
  --data '{
    "url": "http://wes.casio.com/math/index.php?q=I-234F+U-000000000000+M-X100000000+S-05099",
    "lang": "en"
  }'

The response uses a consistent envelope: {"code":"success","data":{...}} on success, or {"code":"error","msg":"..."} when parsing fails. The fields inside data depend on the calculator mode. Supported language codes include en, zh, fr, and vi.

You can also replace http://wes.casio.com in a QR URL with https://cwqr.pages.dev and request JSON directly:

curl 'https://cwqr.pages.dev/math/index.php?q=I-234F+U-000000000000+M-X100000000+S-05099' \
  --header 'Accept: application/json' \
  --header 'Accept-Language: en'

The /math/, /ncal/, and /calc/ paths accept GET requests. Browsers normally send an Accept header beginning with text/html, so opening one directly redirects to the visual parser. Set Accept: application/json explicitly to receive JSON.

See the API documentation for request parameters and response details.

Reference

| Math Template | Code | |--------------------------------------------------------------|----------------------------------------| | $${XX} \dfrac {YY} {ZZ} $$ | 18 1F 1D 1A XX 1B 1A YY 1B 1A ZZ 1B 1E | | $$\dot{X}\dot{X} \ \ \overline{XX} \ \ _(XX_)$$ | 2F 1A XX 1B | | $$\displaystyle \sum_{x=YY}^{ZZ}{(XX)} $$ | 50 1A XX 1C YY 1C ZZ 1B | | $$\displaystyle \int_{YY}^{ZZ}{XX}\mathrm{d}x $$ | 51 1A XX 1C YY 1C ZZ 1B | | $$\dfrac{\mathrm{d}}{\mathrm{d}x}{(XX)}\Bigg\vert_{x=YY} $$ | 52 1A XX 1C YY 1B | | $$\displaystyle \prod_{x=YY}^{ZZ}{(XX)} $$ | 53 1A XX 1C YY 1C ZZ 1B | | $$\left \vert XX \right \vert $$ | 68 1A XX 1B | | $$e^{XX} $$ | 72 1A XX 1B | | $$10^{XX} $$ | 73 1A XX 1B | | $$\sqrt{XX} $$ | 74 1A XX 1B | | $$\log_{XX}{(YY)} $$ | 7D 1A XX 1C YY 1B | | $$\dfrac{XX} {YY} $$ | C8 1D 1A XX 1B 1A YY 1B 1E | | $$\square^{XX} $$ | $\square$ C9 1A XX 1B | | $$\sqrt[XX]{YY} $$ | CA 1D 1A XX 1B 1A YY 1B 1E |

License