
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
xod-arduino-builder
Advanced tools
This package is a part of the XOD project.
The builder wraps Arduino IDE into nodejs
Promise
-based cli interface.
packages/
folder must be reachable.Start node
cli session:
node
Import the builder and set utility display function:
const xab = require('xod-arduino-builder');
const $HOME = process.env.HOME;
const c = promise => promise.then(
value => (console.log(value), Promise.resolve(value)),
error => (console.error(error), Promise.reject(error))
);
Set paths to Arduino IDE executable and packages:
c(xab.setArduinoIdePathExecutable($HOME + '/programs/arduino-1.8.1/arduino'));
c(xab.setArduinoIdePathPackages($HOME + '/.arduino15/packages'));
View the raw official Arduino package index:
c(xab.listPackageIndex());
View the processed package index optimized for pav
selection:
c(xab.listPAVs());
const pav = {
package: 'arduino',
architecture: 'avr',
version: '1.6.16'
};
Install the selected pav
:
c(xab.installPAV(pav));
View the boards supported by the selected pav
:
c(xab.loadPAVBoards(pav));
const pab = {
package: pav.package,
architecture: pav.architecture,
board: 'uno'
};
Compile the file
for the selected pab
:
const file = $HOME + '/programs/arduino-1.8.1/examples/01.Basics/Blink/Blink.ino';
c(xab.verify(pab, file));
View the available serial port
s:
c(xab.listPorts());
const port = '/dev/ttyACM0';
Compile and upload the file
for the selected pab
at the specified port
:
c(xab.upload(pab, port, file));
FAQs
XOD project: Arduino Builder
We found that xod-arduino-builder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.