npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-natal-chart

v0.1.0

Published

n8n community node for generating natal (birth) charts with full astrology calculations including planets, houses, and aspects using the Swiss Ephemeris

Readme

n8n Natal Chart Node

A custom n8n node for astrological calculations using Swiss Ephemeris. Calculate natal charts, progressions, transits, astrodynes, and mundane cycle charts.

Features

  • Natal Chart Calculation: Full birth chart with planets, houses, aspects
  • Progressions: Major (secondary), minor, and solar arc progressions
  • Transits: Current planetary transits to natal positions
  • Astrodynes: Power, harmony, and discord scoring using Benjamine methodology
  • Cycle Charts: Mundane astrology for historical event analysis
  • Geocoding: Automatic coordinate lookup from city names

Installation

# Clone to your n8n custom nodes directory
cd ~/.n8n/custom
git clone <repo-url> n8n-nodes-natal-chart

# Install dependencies and build
cd n8n-nodes-natal-chart
npm install
npm run build

# Restart n8n

Operations

Calculate Natal Chart

Basic birth chart with planets, houses, aspects, Arabic parts, and summary.

Calculate Chart Cake (Full Analysis)

Complete analysis including:

  • Natal chart
  • Major and minor progressions
  • Current transits
  • Transit aspects to natal
  • Progressed aspects
  • Astrodyne scores (optional)

Calculate Transits

Current planetary positions and their aspects to natal chart.

Calculate Progressions

  • Major (Secondary): 1 day = 1 year
  • Minor: 1 lunar month = 1 year
  • Solar Arc: Sun's movement applied to all planets

Calculate Cycle Chart (Mundane)

For historical event analysis using mundane astrology:

  • Sun Cycle: Vernal Equinox (0° Aries ingress)
  • Moon Cycle: New Moon/Lunation
  • Planet Cycles: Declination crossing (0° N)

Geocoding

The Cycle Chart operation includes automatic geocoding:

  • 60+ major capitals cached for instant lookup
  • OpenStreetMap Nominatim API for other locations
  • No API key required

Documentation

Example: Historical Event Analysis Workflow

HTTP Request → Claude AI → Parse JSON → Split Items → Natal Chart (Cycle Chart) → Output
  1. Fetch historical events from web source
  2. Use AI to extract structured data (event name, date, location)
  3. Pass to Natal Chart node with geocoding enabled
  4. Analyze planetary cycles active during events

Configuration

Basic Parameters

  • Birth Date: YYYY-MM-DD format
  • Birth Time: HH:MM (24-hour)
  • Latitude/Longitude: Decimal degrees
  • Timezone Offset: Hours from UTC
  • House System: Placidus, Koch, Whole Sign, etc.

Options

  • Include Aspects
  • Include Chiron
  • Include Scores (Astrodynes)
  • Primary Aspects Only

House Systems Supported

  • Placidus (P)
  • Koch (K)
  • Whole Sign (W)
  • Equal (E)
  • Campanus (C)
  • Regiomontanus (R)
  • Porphyry (O)
  • Morinus (M)

Output Structure

{
  "birthData": { "date", "time", "latitude", "longitude", "julianDay" },
  "planets": {
    "Sun": { "longitude", "sign", "house", "declination", "isRetrograde" }
  },
  "houses": { "House1": { "longitude", "sign", "keywords" } },
  "angles": { "ascendant", "midheaven", "descendant", "imumCoeli" },
  "aspects": [{ "planet1", "planet2", "kind", "orb", "isApplying" }],
  "summary": { "sunSign", "moonSign", "risingSign", "dominantElement" }
}

Requirements

  • n8n (self-hosted or cloud with custom nodes)
  • Node.js 18+
  • Swiss Ephemeris data files (included in ephe/ directory)

Ephemeris Files

The ephe/ directory must contain:

  • seas_18.se1 - Main asteroid file (includes Chiron)
  • sepl_18.se1 - Planet data
  • semo_18.se1 - Moon data

License

MIT

Credits

  • Swiss Ephemeris for astronomical calculations
  • Brotherhood of Light for astrodyne methodology
  • OpenStreetMap Nominatim for geocoding