
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
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:
numbers 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 63 weekly downloads. As such, thrustcurve-db popularity was classified as not popular.
We found that thrustcurve-db 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.