
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
scripting-cli
Advanced tools
This plugin integrates the desktop editor synchronization feature of the Scripting app.
Welcome to the scripting-cli, the command-line tool designed for integrating with the Scripting app. This tool allows you to synchronize and preview your scripts in real-time as you develop them using your favorite desktop editor, such as VSCode.
中文 | 日本語 | Deutsch | Français | Italiano
Before using scripting-cli, ensure the following requirements are met:
Node.js: Make sure you have a recent version of Node.js installed. To check your current version, run:
node -v
Scripting App: The Scripting app must be installed in order to connect with the local service started by scripting-cli.
There’s no need to install scripting-cli globally. Simply run it using npx:
npx scripting-cli <command>
Start by creating a directory where your Scripting app scripts will reside. For example:
mkdir my-scripting-project
cd my-scripting-project
In your working directory, run the following command to start the local development service:
npx scripting-cli start
By default, this starts the service on port 3000. To specify a different port, use the --port option:
npx scripting-cli start --port=4000
To enable Bonjour support—allowing the Scripting app to automatically detect the local service—add the --bonjour flag:
npx scripting-cli start --bonjour
Once the service is running, open the Scripting app and connect to the local service you just started. This establishes a connection between the app and your working directory.
After connecting, select the script project you want to debug. The Scripting app will automatically sync the project’s code with your working directory.
As you write and save scripts using your desktop editor (e.g., VSCode), the changes will automatically sync with the Scripting app and be executed in real-time—making development and debugging much smoother.
Start the local service:
npx scripting-cli start
Open your editor and write your script.
Save the script file.
The updated code is automatically synchronized with the Scripting app and executed.
The default port is 3000. If it’s already in use, specify a different one with the --port option.
Use the --no-auto-open flag to prevent the tool from opening index.tsx or widget.tsx automatically:
npx scripting-cli start --no-auto-open
To use the Bonjour service, ensure your system supports it. On Windows, you may need to install Bonjour manually. Then, use the --bonjour option to enable it.
This tool is ideal for users who prefer desktop editors like VSCode and want seamless code synchronization and debugging with the Scripting app.
If you encounter issues:
npx scripting-cli <command>, and check that the package is up to date.Enjoy using scripting-cli in your Scripting app development workflow. Happy coding!
FAQs
This plugin integrates the desktop editor synchronization feature of the Scripting app.
We found that scripting-cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.