
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
Parse JPL DE planetary ephemerides and calculate the position of planets (and moon) at a given time.
This module is based on Project Pluto's code for calculating planetary positions from JPL ephemerides.
This module uses publicly available planetery ephemeride files which can be downloaded from NASA's Jet Propulsion Laboratory FTP server. More information on which file to chose can be found here.
Require the module.
var ephem = require('node-ephem');
Load ephemerides which you downloaded, by providing a path to it:
var e430 = ephem.load('./eph/linux_p1550p2650.430');
Find Mars, relative to the Sun, at this instant:
var position = e430.find(ephem.bodies.MARS, ephem.bodies.SUN, ephem.julian(new Date));
Find RA/Dec of Neptune at this moment, adjusted for light-time:
var radec = ephem.equatorial(e430.observe(ephem.bodies.MERCURY, ephem.bodies.EARTH, ephem.julian(new Date)));
node-ephem exports:
| Function | Parameters | Description |
|---|---|---|
| load | path | Load planetary ephemerides file, returns ephemeris object |
| julian | date | convert Date to Julian day (J2000 epoch, TT) |
| equatorial | position | Cartesian to Equаtorial |
ephemeris object:
| Function | Parameters | Description |
|---|---|---|
| find | body, observer, time | Find the position of body looking from observer at time |
| observe | body, observer, time | Find position of body adjusted for light-time |
| status | Returns constants from loaded epehmeris file and status |
node-ephem provides a convenient name to code mapping via exported constants
| Planet | Code |
|---|---|
| ephem.bodies.MERCURY | 1 |
| ephem.bodies.VENUS | 2 |
| ephem.bodies.EARTH | 3 |
| ephem.bodies.MARS | 4 |
| ephem.bodies.JUPITER | 5 |
| ephem.bodies.SATURN | 6 |
| ephem.bodies.URANUS | 7 |
| ephem.bodies.NEPTUNE | 8 |
| ephem.bodies.PLUTO | 9 |
| ephem.bodies.MOON | 10 |
| ephem.bodies.SUN | 11 |
A testrunner is included which executes the test files available for DE files. Download the testpo file and place in the same directory as the ephemeris file, then run:
node testrunner.js
Follow the instructions.
FAQs
Calculator/parser for JPL ephemeris data
We found that node-ephem 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.