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

@cnunciato/pulumi-miniflux

v0.0.16

Published

A multi-language [Pulumi](https://pulumi.com) component for [Miniflux](https://miniflux.app/), the excellent open-source RSS server. This component deploys a containerized Miniflux service to the AWS cloud using [AWS Fargate](https://aws.amazon.com/fargat

Readme

miniflux

A multi-language Pulumi component for Miniflux, the excellent open-source RSS server. This component deploys a containerized Miniflux service to the AWS cloud using AWS Fargate and Amazon RDS.

Usage

To use this component, you'll need:

  • An AWS account, with credentials (AWS_ACCESS_KEY_ID, etc.) properly set.
  • A relatively recent (>= 3.3.1) version of Pulumi installed
  • Node.js, of course

Create a new Pulumi project

$ pulumi new typescript

Install this package and its associated plugin

The plugin is currently hosted on AWS.

$ npm install --save @cnunciato/miniflux
$ pulumi plugin install resource miniflux 0.0.16 \
    --server http://cnunciato-pulumi-components.s3-website-us-west-2.amazonaws.com

Provide passwords for the Miniflux admin and database users

$ pulumi config set --secret adminPassword "some-secret-password"
$ pulumi config set --secret dbPassword "some-other-secret-password"

Write the Pulumi program

Here's a complete example. In index.ts:

import * as pulumi from "@pulumi/pulumi";
import * as miniflux from "@cnunciato/miniflux";

const config = new pulumi.Config();
const adminPassword = config.requireSecret("adminPassword");
const dbPassword = config.requireSecret("adminPassword");

const service = new miniflux.MinifluxService("service", {
    adminPassword,
    dbPassword,
});

export const endpoint = pulumi.interpolate`http://${service.endpoint}`;

Deploy with Pulumi!

$ pulumi up

...
Updating (dev)

...
     Type                                           Name                 Status
 +   pulumi:pulumi:Stack                            miniflux-typescript  created
 +   └─ miniflux:service:MinifluxService            service              created
 +      ├─ aws:cloudwatch:LogGroup                  logGroup             created
 +      ├─ aws:iam:Role                             taskRole             created
 +      ├─ aws:ecs:Cluster                          cluster              created
 +      ├─ aws:ec2:SecurityGroup                    dbSecurityGroup      created
 +      ├─ aws:rds:SubnetGroup                      dbsubnets            created
 +      ├─ aws:ec2:SecurityGroup                    webSecurityGroup     created
 +      ├─ aws:elasticloadbalancingv2:TargetGroup   targetGroup          created
 +      ├─ aws:iam:RolePolicyAttachment             taskRolePolicy       created
 +      ├─ aws:rds:Instance                         db                   created
 +      ├─ aws:elasticloadbalancingv2:LoadBalancer  loadBalancer         created
 +      ├─ aws:elasticloadbalancingv2:Listener      webListener          created
 +      ├─ aws:ecs:TaskDefinition                   taskDefinition       created
 +      └─ aws:ecs:Service                          fargateService       created

Resources:
    + 15 created

Duration: 3m13s