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

@silkline/pulumi-paramify

v0.1.0

Published

A native Pulumi provider for [Paramify](https://paramify.com), generated from Paramify's OpenAPI spec using [`pulschema`](https://github.com/cloudy-sky-software/pulschema) (spec → Pulumi schema + CRUD metadata) and [`pulumi-provider-framework`](https://gi

Readme

Pulumi Provider for Paramify

A native Pulumi provider for Paramify, generated from Paramify's OpenAPI spec using pulschema (spec → Pulumi schema + CRUD metadata) and pulumi-provider-framework (the generic REST provider runtime).

Resources

| Resource | API endpoints | | --------------------------------------- | ------------------------------------------- | | paramify:validators:Validator | /validators | | paramify:scripts:Script | /scripts | | paramify:issues:Issue | /issues | | paramify:issues:Recommendation | /issues/{issueId}/recommendations | | paramify:issues:Deviation | /issues/{issueId}/deviations | | paramify:issues:Milestone | /issues/{issueId}/milestones | | paramify:evidence:Evidence | /evidence | | paramify:evidence:Artifact | /evidence/{evidenceId}/artifacts/url (URL artifacts only) |

Read-only Paramify objects (projects/programs, assessments, audit assessments, solution capabilities, elements, stacks) are exposed as invoke functions (get*), not resources.

Deliberately not covered: file-upload artifacts (multipart bytes are not IaC-shaped), OSCAL export, the associate actions, assessment intake endpoints, and the custom-tags endpoints (bulk names[] bodies keyed by a composite {entity}/{entityId} path with no per-item id — not resource-shaped).

Configuration

| Config | Description | | ------------------ | ---------------------------------------------------------------------------------- | | paramify:apiKey | Paramify API key (secret). Also read from PARAMIFY_API_KEY. Sent as Authorization: Bearer <key>. |

pulumi config set --secret paramify:apiKey <key>

Example

import * as paramify from '@silkline/pulumi-paramify';

const script = new paramify.scripts.Script('tls-check', {
  name: 'Check TLS configuration',
  code: 'echo checking',
});

See examples/simple for a runnable program.

How the spec is vendored

provider/cmd/pulumi-gen-paramify/openapi.yml is generated — do not edit it by hand. It is produced from the componentized Paramify spec maintained in the client-app repo (client/packages/paramify-sdk/paramify-openapi.json) by scripts/prepare-spec.mjs, which applies the pulschema/kin-openapi-specific conditioning (RE2-incompatible regexes, non-standard marker keys, OpenAPI 3.1 null-union branches, operationId normalization for CRUD pairing, security-scheme cleanup, Validator union flattening). The header comment in that script documents each rule.

To refresh after a spec update:

node scripts/prepare-spec.mjs <path-to>/paramify-openapi.json
make gen generate_schema     # rebuilds the embedded spec + schema.json/metadata.json
make build                   # regenerates the language SDKs
make test_provider

Building

Prerequisites: Go, NodeJS + Yarn, Python 3, .NET, pulumictl, the Pulumi CLI.

make gen generate_schema   # OpenAPI spec → Pulumi schema
make provider              # build the provider binary
make build                 # generate all language SDKs
make test_provider         # Go unit tests

Releasing

Push a v* tag (plus an sdk/v* tag for the Go SDK). GitHub Actions runs goreleaser to attach the provider binaries to the GitHub release and publishes the language SDKs — see .github/workflows/release.yml for the required repository secrets (npm, PyPI, NuGet tokens).

The Pulumi engine downloads the plugin binary from this repository's GitHub releases (pluginDownloadURL: github://api.github.com/Silkline). The repository is private, so every plugin download needs a GITHUB_TOKEN environment variable with contents:read on this repo — locally, GITHUB_TOKEN=$(gh auth token) pulumi ...; Pulumi Cloud deployments get it from the deployment settings. Every published SDK version needs a matching release tag. The npm package itself is public (access: public in the release workflow).