Scritch is a fork of Boop by Ivan Mathy. All the original ideas, design and the vast majority of the code are theirs — Scritch just takes it in its own direction. Please go star the upstream project.
Documentation • Find more scripts
Scritch is a scriptable scratchpad for developers. Paste some text in, run a transformation on it — format some JSON, decode a JWT, hash a string, convert CSV to JSON — and copy the result back out. No files, no projects, no ceremony.
Scritch has no packaged releases yet, so for now you build it from source:
- Clone or download a copy of the repository
- Open
Scritch/Scritch.xcodeproj - Press play
If you want a ready-made, signed, App Store-distributed build today, you want Boop instead.
Scritch runs the same JavaScript transformation scripts as Boop, so scripts written for Boop work here unmodified. Both module prefixes resolve:
const { encode } = require('@scritch/base64') // preferred
const { encode } = require('@boop/base64') // still supportedSee Custom scripts to write your own.
Scritch inherits Boop's license — see LICENSE. Original copyright remains with the upstream authors.
