
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
node-mavlink-debugger
Advanced tools
It's a silly thing, but if you want to verify what other tools understand from the packets you received it's good to have the data to feed it in.
This simple filter takes the packet and dumps it onto console in such a form that can be copy-pasted into mission-planner.
To install the package issue the following command:
$ npm install --save node-mavlink-debugger
The simplest usage is to just .pipe() it in just after the packet parser:
import { SerialPort } from 'serialport'
import {
MavLinkPacket,
MavLinkPacketParser,
MavLinkPacketSplitter
} from 'node-mavlink'
import { mavdbg } from 'node-mavlink-debugger'
new SerialPort({ path: '/dev/ttyACM0', baudRate: 115200 })
.pipe(new MavLinkPacketSplitter())
.pipe(new MavLinkPacketParser())
.pipe(mavdbg())
.resume()
That's the first approach into making working with MavLink approachable. It's really a disaster if you don't know what the packets flying around mean.
I think that in the future this package will grow substantially, so stay tuned!
Happy coding!
FAQs
MavLink debugger services
We found that node-mavlink-debugger demonstrated a not healthy version release cadence and project activity because the last version was released 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.