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

@taulo1999/kanpla-api

v1.0.9

Published

See what's for lunch at your Kanpla canteen.

Downloads

91

Readme

Kanpla API

See what's for lunch at your Kanpla canteen.

Installation

    npm install @taulo1999/kanpla-api
    yarn add @taulo1999/kanpla-api

Setup

The extension requires four preferences, configured on the first launch.

| Preference | Where to find it | | ---------------------- | -------------------------- | | Email | Your Kanpla login email | | Password | Your Kanpla login password | | Firebase API Key | See below | | Firebase Module ID | See below |

Finding the Firebase API Key and Module ID

These values aren't exposed in the Kanpla UI, so you'll need to grab them from network traffic:

  1. Open app.kanpla.dk in your browser
  2. Open DevTools → Network tab
  3. Filter requests by frontend
  4. Find the request to the /frontend endpoint
  5. From the request headers, copy:
    • x-goog-api-key — looks like AIzaSyB...
  6. From the response body, search for:
    • moduleId — the ID of the menu module for your canteen

Create a .env file with the values

    FIREBASE_API_KEY=<firebase-api-key>
    FIREBASE_KANPLA_EMAIL=<kanpla-email>
    FIREBASE_KANPLA_PASSWORD=<kanpla-password>
    FIREBASE_MODULE_ID=<firebase-module-id>

Example

import Kanpla from "@taulo1999/kanpla-api";

const kanpla = new Kanpla({
  email: process.env.FIREBASE_KANPLA_EMAIL as string,
  password: process.env.FIREBASE_KANPLA_PASSWORD as string,
  firebaseAPIKey: process.env.FIREBASE_API_KEY as string,
  firebaseModuleId: process.env.FIREBASE_MODULE_ID as string,
});

const menu = await kanpla.getMenusByDate(new Date("2026-04-01"));

console.log("Menu from date: 2026-04-01", menu);