Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
@nasa-jpl/aerie-ampcs
Advanced tools
Utility functions to convert a standard XML AMPCS command dictionary to JavaScript.
This package contains utility functions to convert a standard XML AMPCS command dictionary to JavaScript.
npm install @nasa-jpl/aerie-ampcs --save
parse
Parse an XML string in the AMPCS command dictionary standard into JavaScript.
import { parse } from '@nasa-jpl/aerie-ampcs';
const xml = `
<?xml version='1.0' encoding='UTF-8'?>
<command_dictionary>
<header mission_name="GENERIC" spacecraft_id="42" schema_version="5.0" version="2022-001T00:00:00.000" />
<command_definitions>
</command_definitions>
</command_dictionary>
`;
const js = parse(xml);
console.log(js);
const json = JSON.stringify(js);
console.log(json);
The scripts and documentation in this project are released under the MIT License.
FAQs
Utility functions to convert a standard XML AMPCS command dictionary to JavaScript.
The npm package @nasa-jpl/aerie-ampcs receives a total of 92 weekly downloads. As such, @nasa-jpl/aerie-ampcs popularity was classified as not popular.
We found that @nasa-jpl/aerie-ampcs demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 9 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
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.