JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 23
  • Score
    100M100P100Q35001F
  • License AGPL-3.0-or-later

[WIP] An easy language to make huge scratch code more easily. ✨

Package Exports

  • scratch-script

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (scratch-script) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

ScratchScriptKit

Licence Github Package Version NPM

Code feature is STILL work in progress. But others (sprites or stage definition) are finished.

A toolchain to make scratch project without drag any thing.

ScratchScript Example:

when events.flagClicked() {
    looks.sayFor('Hello ScratchScript!', 3);
    forever {
        direction = 1;
        repeat (10) {
            motion.changeY(5 * direction);
        }
        if (direction == 1) {
            direction = -1;
        } else {
            direction = 1;
        }
    }
}

Chinese 中文

English document is in progress (:P)