Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
thrustcurve-db
Advanced tools
ThrustCurve.org model rocket motor and thrust curve data as a single JSON file
This module is a rebundling of the model rocket motor data available on John Coker's excellent thrustcurve.org website ("TC") as a stand-alone JSON file. The data is an array of motor items consistent with TC's SearchResponse#results
schema.
See also, the included TypeScript definitions.
In addition to the SearchResponse
data, the following alterations have been made:
number
s are rounded to a precision of 4 digits.samples
array containing the thrust data found in the TC /api/vi/download
endpoint.samples
data is normalized to insure the first data point is always [0, 0]
For full details of how this data set is compiled, please refer to the build/build.js
script in this repository.
npm i thrustcurve-db
yarn add thrustcurve-db
import MOTORS from 'thrustcurve-db';
const MOTORS = require('thrustcurve-db');
Note: Users running node
may need to supply the --experimental-json-modules
flag
const MOTORS = await fetch(
'https://cdn.jsdelivr.net/npm/thrustcurve-db@latest/thrustcurve-db.json'
).then(res => res.json());
// Find all J motors currently in production
MOTORS.filter(m => m.availability === 'regular' && m.impulseClass === 'J');
The data provided here is sourced from thrustcurve.org. Omissions and errors in rocket data should be directed there. Any systematic problems or suggestions for how the data here is presented may be reported here.
FAQs
ThrustCurve.org model rocket motor and thrust curve data as a single JSON file
The npm package thrustcurve-db receives a total of 23 weekly downloads. As such, thrustcurve-db popularity was classified as not popular.
We found that thrustcurve-db demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.