Skip to content

Repository files navigation

自動筆算プログラム PaperCalc

これは何?

PaperCalcは、JavaScriptで自動的に「足し算」「引き算」「掛け算」「割り算」などの筆算を行うプログラムです。

小学生3年生以上を対象としたWeb教材です。

[スクリーンショット]

Development Setup

Requirements

Install dependencies

npm install

Build

Compile JavaScript files to dist/ and copy static assets:

npm run build

Watch mode

Recompile automatically on file changes (JS/TS only; re-run build for asset changes):

npm run watch

Type-check without emitting output

npm run typecheck

Serve locally

After building, serve the dist/ directory with any static file server. For example:

# Using Python (built-in)
python3 -m http.server 8080 --directory dist

# Or using Node.js npx
npx serve dist

Then open http://localhost:8080 in your browser.

License

  • MIT

Contact