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

@browserbasehq/sdk-functions

v1.0.1

Published

[![NPM version](https://img.shields.io/npm/v/@browserbasehq/sdk-functions.svg)](https://npmjs.org/package/@browserbasehq/sdk-functions)

Readme

Browserbase Functions Node SDK

NPM version

The Browserbase Functions SDK lets you define, develop, and deploy serverless browser automation functions on Browserbase. Each function gets a managed browser session — write your automation logic, test it locally, and publish it to the cloud.

The full documentation can be found on docs.browserbase.com.

Installation

pnpm add @browserbasehq/sdk-functions

or with npm:

npm install @browserbasehq/sdk-functions

Quick Start

Scaffold a new project with the CLI:

pnpm dlx @browserbasehq/sdk-functions init my-project
cd my-project

Add your Browserbase credentials to .env:

BROWSERBASE_API_KEY=your_api_key_here
BROWSERBASE_PROJECT_ID=your_project_id_here

Start the local development server:

pnpm bb dev index.ts

When ready, publish to Browserbase:

pnpm bb publish index.ts

Usage

Basic Function

import { defineFn } from "@browserbasehq/sdk-functions";

defineFn("hello-world", async () => {
  return { message: "Hello from Browserbase!" };
});

Browser Automation

Every function receives a context with a managed browser session. Connect to it with Playwright:

import { defineFn } from "@browserbasehq/sdk-functions";
import { chromium } from "playwright-core";

defineFn("scrape-titles", async (context) => {
  const browser = await chromium.connectOverCDP(context.session.connectUrl);
  const page = browser.contexts()[0]!.pages()[0]!;

  await page.goto("https://news.ycombinator.com");
  const titles = await page.$$eval(".titleline > a", (els) =>
    els.slice(0, 5).map((el) => el.textContent),
  );

  return { titles };
});

Parameter Validation

Use Zod schemas to validate parameters passed to your function:

import { defineFn } from "@browserbasehq/sdk-functions";
import z from "zod";

defineFn(
  "multiply",
  async (_context, params) => {
    return { result: params.a * params.b };
  },
  {
    parametersSchema: z.object({
      a: z.number(),
      b: z.number(),
    }),
  },
);

Custom Browser Configuration

Pass sessionConfig to customize the browser session (uses the same options as the Browserbase SDK session create params):

import { defineFn } from "@browserbasehq/sdk-functions";
import { chromium } from "playwright-core";

defineFn(
  "stealth-scraper",
  async (context) => {
    const browser = await chromium.connectOverCDP(context.session.connectUrl);
    const page = browser.contexts()[0]!.pages()[0]!;

    await page.goto("https://example.com");
    return { content: await page.textContent("body") };
  },
  {
    sessionConfig: {
      browserSettings: { advancedStealth: true },
    },
  },
);

CLI Reference

The bb CLI is included with the package.

| Command | Description | | ------------------------- | -------------------------------------------------------------- | | bb init [project-name] | Scaffold a new project (defaults to my-browserbase-function) | | bb dev <entrypoint> | Start a local development server | | bb publish <entrypoint> | Deploy your function to Browserbase | | bb invoke <functionId> | Invoke a deployed function |

bb init

bb init my-project
bb init my-project --package-manager npm

Options:

  • -p, --package-manager <manager> — Package manager to use (npm or pnpm, defaults to pnpm)

bb dev

bb dev index.ts
bb dev index.ts --port 3000

Options:

  • -p, --port <number> — Port to listen on (default: 14113)
  • -h, --host <string> — Host to bind to (default: 127.0.0.1)

bb publish

bb publish index.ts
bb publish index.ts --dry-run

Options:

  • --dry-run — Show what would be published without uploading
  • -u, --api-url <url> — Custom API endpoint URL

bb invoke

bb invoke <functionId>
bb invoke <functionId> --params '{"key": "value"}'

Options:

  • -p, --params <json> — JSON parameters to pass to the function
  • --no-wait — Don't wait for the invocation to complete
  • --check-status <invocationId> — Check the status of an existing invocation
  • -u, --api-url <url> — Custom API endpoint URL

Configuration

Set your Browserbase credentials as environment variables or in a .env file:

| Variable | Required | Description | | ------------------------ | -------- | --------------------------- | | BROWSERBASE_API_KEY | Yes | Your Browserbase API key | | BROWSERBASE_PROJECT_ID | Yes | Your Browserbase project ID |

Get your API key and project ID from browserbase.com.

Requirements

  • Node.js 18+
  • TypeScript >= 4.5