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

@trackunit/serverless-utils

v0.2.30

Published

The `@trackunit/serverless-utils` package provides utilities for building serverless extensions in the Iris App SDK.

Readme

Trackunit serverless-utils

The @trackunit/serverless-utils package provides utilities for building serverless extensions in the Iris App SDK.

This library is exposed publicly for use in the Trackunit Iris App SDK.

For more info and a full guide on Iris App SDK Development, please visit our Developer Hub.

Installation

yarn add @trackunit/serverless-utils

API

getSecret

Fetches secrets from the SDK Server in production, or from environment variables during local development.

import { getSecret } from "@trackunit/serverless-utils";

// In a Hono route handler
app.get("/data", async (c) => {
  const apiKey = await getSecret({ context: c, secretKey: "API_KEY" });
  // Use apiKey...
});

Local development: Copy .env.example to .env and set the secret with the same name as secretKey (e.g., API_KEY=xxx). Generated serverless extensions include dotenv which loads .env automatically.

Production: Secrets are automatically fetched from the SDK Server using request context headers.

getUserToken

Retrieves the user token from request headers (without "Bearer " prefix):

import { getUserToken } from "@trackunit/serverless-utils";

app.get("/data", async (c) => {
  const token = getUserToken({ context: c });
  if (!token) {
    return c.json({ error: "Unauthorized" }, 401);
  }
  // Use token for authenticated API calls...
});

ACCOUNT_ADMIN_IRIS_APP_TOKEN_HEADER

Header key constant used by the SDK Server to pass admin tokens to serverless functions.

import { ACCOUNT_ADMIN_IRIS_APP_TOKEN_HEADER } from "@trackunit/serverless-utils";
// Value: "tu-account-admin-iris-app-token"

Trackunit

This package was developed by Trackunit ApS. Trackunit is the leading SaaS-based IoT solution for the construction industry, offering an ecosystem of hardware, fleet management software & telematics.

The Trackunit logo