The Scratch development team is always changing the Scratch API, and we need to catch up with it. This fork of node-scratch-client intends to keep up-to-date with the latest Scratch API as quickly as possible.
In the folder you want to use the client in, clone the repository:
git clone https://github.com/qucchia/node-scratch-client/
Once that's done, you can import the module using require("./node-scratch-client/index.js")
.
Full project manipulation:
const scratch = require("./node-scratch-client/index.js");
// Initiate client
const Client = new scratch.Client({
username: "griffpatch",
password: "SecurePassword1"
});
// Login
Client.login().then(() => {
// Fetch project information
Client.getProject(10128407).then(project => {
project.postComment("Turning off comments..");
project.turnOffCommenting();
});
});
Cloud server connection:
const scratch = require("./node-scratch-client/index.js");
const Client = new scratch.Client({
username: "ceebeee",
password: "SecurePassword2"
});
Client.login().then(() => {
let cloud = Client.session.createCloudSession(281983597);
cloud.connect().then(() => {
cloud.on("set", variable => {
console.log("Variable changed to " + variable.value);
});
});
});