Package Exports
- codecab
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 (codecab) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
CodeCab
A powerfull like game engine for JavaScript but with physics, autotrace, text and graphics.
CodeCab has a quick start online editor for learning JavaScript at code.cab/ide.html.
Scratch vs CodeCab
let stage = new CStage();
let cat = new CSprite('cat.png');
cat.onStart(async function() {
this.pen.down();
for (let count = 0; count < 10; count += 1) {
this.move(10);
await this.say("CodeCab", 2);
await this.sound.play('meow.mp3');
this.turn(15);
}
});