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 🙏

© 2025 – Pkg Stats / Ryan Hefner

almuten-scraper

v1.0.9

Published

A tool for scraping and calculating almuten (planetary dignity) in astrology

Downloads

262

Readme

almuten-scraper

A TypeScript library for scraping astrological chart data from almuten.net.

Features

  • Fetches detailed astrological chart data based on birth information
  • Retrieves information about planets, houses, and aspects
  • Identifies astrological patterns like Grand Trines, Grand Crosses, Kites, and Stelliums
  • Calculates flying houses and other astrological features
  • Supports both English and Chinese localization
  • Properly handles timezone conversions

Installation

npm install almuten-scraper
# or
yarn add almuten-scraper
# or
bun add almuten-scraper

Usage

ESM (ECMAScript Modules)

import { AlmutenScraper, BirthInfo } from "almuten-scraper";

// Create birth information object
const birthInfo: BirthInfo = {
	name: "John Doe",
	year: 1990,
	month: 1,
	day: 15,
	hour: 12,
	minute: 30,
	location: "New York, USA",
	latitude: 40.7128,
	longitude: -74.006,
};

// Create scraper instance
const scraper = new AlmutenScraper({
	birthInfo,
	options: {
		timeout: 5000, // Optional: HTTP request timeout in ms
		traditional: false, // Optional: Use traditional astrology settings
	},
});

// Get horoscope data
try {
	const horoscopeData = await scraper.getHoroscopeData();
	console.log(horoscopeData);
} finally {
	// Always close the scraper when done
	await scraper.close();
}

CommonJS

// For CommonJS environments (Node.js without "type": "module" in package.json)
const { AlmutenScraper } = require("almuten-scraper");

// Or alternatively using dynamic import
async function run() {
	const { AlmutenScraper } = await import("almuten-scraper");

	// Rest of the code...
}

API Reference

BirthInfo Interface

Information required to generate an astrological chart:

| Property | Type | Description | | --------- | ------ | ------------------------ | | name | string | Name of the person | | year | number | Birth year | | month | number | Birth month (1-12) | | day | number | Birth day (1-31) | | hour | number | Birth hour (0-23) | | minute | number | Birth minute (0-59) | | location | string | Birth location name | | latitude | number | Birth location latitude | | longitude | number | Birth location longitude |

AlmutenScraper Class

Main class for scraping astrological data:

Constructor

constructor(config: ScraperConfig)
  • config: Configuration object containing birthInfo and optional options

Methods

  • getHoroscopeData(): Fetches and returns complete horoscope data
  • fetchPage(url: string): Fetches raw HTML from almuten.net
  • close(): Closes connections and resources

HoroscopeData Interface

The returned data structure includes:

  • birthInfo: Original birth information
  • planets: Array of planet positions and information
  • houses: Array of house positions and information
  • aspects: Array of aspects between planets
  • ascendant: Ascendant information
  • midheaven: Midheaven information
  • specialPoints: Other special points in the chart

License

See the LICENSE file for details.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.