Skip to content
This repository has been archived by the owner on Apr 10, 2022. It is now read-only.

meow-js/meow-js

Repository files navigation

This package is not maintained a lot these days. I might come back to this later, not sure yet. Comment on my scratch profile to tell me if you use this or not.

meow.js

A simple way to communicate with the Scratch API

Install

npm install meowing

Example usage:

const { ScratchSession } = require("meowing");

let session = new ScratchSession("sus", "sussy");

session.login().then(async () => {
  // Get a forum (Advanced Topics) and find the first topic
  let AT = await session.getForum(31);
  await AT.topics[0]._init();
  console.log(AT.topics[0].title);
});

Credits

Thanks to CubeyTheCube for publishing this to npm!