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

@rootly/pulumi

v3.0.2

Published

A Pulumi package for creating and managing rootly cloud resources.

Readme

Rootly Pulumi Provider

The Rootly Pulumi Provider enables you to manage Rootly resources using infrastructure-as-code. Rootly is a comprehensive incident management and workflow automation platform that helps teams respond to and learn from incidents.

Installing

Node.js (JavaScript/TypeScript)

To use from JavaScript or TypeScript in Node.js, install using either npm:

npm install @rootly/pulumi

or yarn:

yarn add @rootly/pulumi

Other Languages

Python, Go, and .NET SDKs are planned for future releases.

Configuration

The following configuration points are available for the rootly provider:

  • rootly:apiToken (environment: ROOTLY_API_TOKEN) - the API token for Rootly. You can obtain this from your Rootly account settings.
  • rootly:baseUrl (environment: ROOTLY_BASE_URL) - the base URL for the Rootly API (optional, defaults to https://api.rootly.io)

Usage Examples

Basic Resources

const rootly = require("@rootly/pulumi");

// Create severity levels
const sev0 = new rootly.Severity("sev0", {
    name: "SEV0",
    description: "Critical - Complete service outage",
    color: "#FF0000",
    position: 0
});

const sev1 = new rootly.Severity("sev1", {
    name: "SEV1", 
    description: "High - Significant service degradation",
    color: "#FF8C00",
    position: 1
});

// Create services
const apiService = new rootly.Service("api-service", {
    name: "API Service",
    description: "Core API backend service",
    color: "#4285F4"
});

const webService = new rootly.Service("web-service", {
    name: "Web Frontend",
    description: "Customer-facing web application", 
    color: "#34A853"
});

// Create teams
const sre = new rootly.Team("sre", {
    name: "Site Reliability Engineering",
    description: "SRE team responsible for platform reliability"
});

Workflow Automation

// Create an incident workflow
const incidentWorkflow = new rootly.WorkflowIncident("critical-incident-workflow", {
    name: "Critical Incident Response",
    description: "Automated workflow for SEV0/SEV1 incidents",
    triggerParams: {
        triggerType: "incident_created",
        severityIds: [sev0.id, sev1.id],
    },
    enabled: true
});

// Add workflow tasks
const slackNotification = new rootly.WorkflowTaskSendSlackMessage("slack-notification", {
    workflowId: incidentWorkflow.id,
    name: "Notify SRE Team",
    position: 1,
    taskParams: {
        channels: ["#incidents", "#sre-oncall"],
        message: "🚨 New {{ incident.severity.name }} incident: {{ incident.title }}"
    }
});

Deploying Resources

After defining your Rootly resources, deploy them using standard Pulumi commands:

# Preview changes
pulumi preview

# Deploy resources
pulumi up

# View current stack resources
pulumi stack

Reference

For detailed reference documentation, please visit the Pulumi registry

Resource Types

This provider supports managing a comprehensive set of Rootly resources:

  • Incident Management: Severities, Services, Teams, Incident Types, Incident Roles
  • Workflow Automation: Workflows, Workflow Tasks (50+ task types)
  • Configuration: Custom Fields, Forms, Environments, Functionalities
  • Integrations: Webhooks, Secrets, Heartbeats
  • Access Control: Roles, Permissions
  • Dashboards: Dashboard Panels, Status Pages

For a complete list of available resources and their properties, see the Pulumi Registry documentation.

Development

Building the Provider

# Update the upstream Terraform provider
make update_provider

# Build the provider and all SDKs
make development

# Build specific SDK
make build_nodejs
make build_python 
make build_go
make build_dotnet

Testing

# Run integration tests (requires ROOTLY_API_TOKEN)
make test

# Lint provider code
make lint_provider

Releases

Releases are automated via GitHub Actions when version tags are created. The CI/CD pipeline builds and publishes packages to all supported package registries.