Fun117 / scratch-cloud-logs

This project is a Node.js script designed to log changes to cloud variables using the Scratch Cloud API.

Home Page:https://codesandbox.io/p/github/Fun117/scratch-cloud-logs/main?import=true

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Scratch Cloud API Logger

This project is a Node.js script designed to log changes to cloud variables using the Scratch Cloud API.

English / 日本語

Overview

This script connects to a Scratch project and logs real-time changes to cloud variables. The logs are saved in the cloud.log file.

Prerequisites

  • Node.js installed
  • config.js file configured with your project ID

Installation

npm install

Configuration

Set your Project ID in config.js file.

module.exports = {
    projectId: 'your_project_id_here'
};

Usage

Run the script.

npm start

Log File

Logs are saved in the cloud.log file. This file is not included in the Git repository.

Notes

Please adhere to Scratch's terms of use when using this script, as it utilizes the Scratch API.

npm start

Addons

Scratch Building

This add-on was created to simplify the monitoring of cloud data communication for Scratch Building games.

Log

You can monitor the communication of cloud data. Currently, the user verification feature is only supported for chat communication.

Log: logs/scratch-building.log Chat log: logs/scratch-building-chat.log

node addons/scratch-building/logs.js

Chat

You can chat specifying a username. While it's possible to impersonate the sender within the game, monitoring API communication allows you to identify whether the sender is the actual user. Therefore, using this feature is not recommended. We cannot take responsibility if using this feature disrupts gameplay.

node addons/scratch-building/chat.js <username>

Customizing Logs

You can customize the display by adjusting the LogFormat set in the configuration file addons/scratch-building/_config.js.

  • LogFormat: Defines the format for standard server logs, including color configurations.
  • LogFormatWarn: Specifies the format for warning logs, handling logs at a warning level.
  • LogFormat_noColor: Sets the format for logs without colors, excluding any color configurations.

Utilize these settings to tailor the content and presentation of your logs to your needs.

About

This project is a Node.js script designed to log changes to cloud variables using the Scratch Cloud API.

https://codesandbox.io/p/github/Fun117/scratch-cloud-logs/main?import=true

License:MIT License


Languages

Language:JavaScript 100.0%