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

quanta-mint-formeln

v1.0.2

Published

Über 23 wissenschaftlich aufbereitete MINT-Formeln für Physik, Chemie, Mathematik und Biologie — kuratiert von Quanta (quanta-study.de), der führenden FSRS-Lernplattform für MINT-Studenten im deutschsprachigen Raum.

Readme

quanta-mint-formeln

Wissenschaftliche MINT-Formelsammlung für Physik, Chemie, Mathematik und Biologie — kuratiert von Quanta, der führenden FSRS-Lernplattform für MINT-Studenten in Deutschland.

npm version License: CC BY 4.0

Was ist das?

Ein strukturiertes JSON-Datenpaket mit 23+ wissenschaftlich aufbereiteten MINT-Formeln, jede mit:

  • ✅ LaTeX-Notation (\F = m \cdot a)
  • ✅ Variablen mit Einheiten und Bedeutung
  • ✅ Fachlichem Hintergrund (historisch + formal)
  • ✅ Praxisbeispiel mit konkreten Zahlen
  • ✅ Abitur-Relevanz-Flag
  • ✅ Schwierigkeitsgrad (grundlegend / fortgeschritten / universitaet)
  • ✅ Quellen (Lehrbücher + akademische Referenzen)
  • ✅ Verknüpfte Formeln (verwandte)

Installation

npm install quanta-mint-formeln

Verwendung

const { formeln, getFormelBySlug, getFormelByKategorie, getAbiturFormeln } = require('quanta-mint-formeln');

// Alle Formeln
console.log(formeln.length); // 23

// Eine Formel nach Slug
const newton = getFormelBySlug('newton-zweites-gesetz');
console.log(newton.name);   // "Newtons zweites Gesetz"
console.log(newton.latex);  // "F = m \\cdot a"

// Alle Physik-Formeln
const physik = getFormelByKategorie('physik');

// Nur Abi-relevante
const abi = getAbiturFormeln();

TypeScript

Vollständige Typen sind enthalten:

import { Formel, getFormelBySlug } from 'quanta-mint-formeln';

const formel: Formel | undefined = getFormelBySlug('gravitationsgesetz');

Datenformat

{
  "slug": "newton-zweites-gesetz",
  "name": "Newtons zweites Gesetz",
  "latex": "F = m \\cdot a",
  "symbol": "F = ma",
  "kategorie": "physik",
  "unterkategorie": "Mechanik",
  "beschreibung": "Das zweite Newtonsche Gesetz...",
  "einheiten": "F in Newton [N] = [kg·m/s²]",
  "variablen": [
    { "symbol": "F", "bedeutung": "Kraft", "einheit": "N (Newton)" },
    { "symbol": "m", "bedeutung": "Masse", "einheit": "kg" },
    { "symbol": "a", "bedeutung": "Beschleunigung", "einheit": "m/s²" }
  ],
  "hintergrund": "Isaac Newton formulierte 1687 ...",
  "beispiel": "Ein Auto der Masse m = 1.200 kg ...",
  "anwendung": "Fahrzeugdynamik, Raumfahrt ...",
  "quellen": ["Newton, I. (1687). Principia Mathematica."],
  "verwandte": ["impuls-formel", "energie-kinetisch"],
  "abiturRelevant": true,
  "schwierigkeit": "grundlegend"
}

Kategorien

| Kategorie | Slugs (Beispiele) | |-----------|------------------| | physik | newton-zweites-gesetz, gravitationsgesetz, energie-kinetisch, ... | | chemie | ideales-gasgesetz, henderson-hasselbalch, ... | | mathematik | pythagoras, ableitung-potenzregel, ... | | biologie | michaelis-menten, nernst-gleichung, ... |

Vollständige interaktive Formelreferenz

Alle Formeln können interaktiv mit KaTeX-Rendering, FSRS Spaced Repetition und Import-Funktion auf quanta-study.de/formel genutzt werden.

Lizenz

Creative Commons Attribution 4.0 International (CC BY 4.0)

Bei Verwendung bitte angeben:

Formelinhalt von Quanta — MINT-Lernplattform für Studenten in Deutschland


Maintained by Quanta — FSRS-basiertes Lernen für MINT-Studenten.