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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@heroku-cli/plugin-free

v0.1.4

Published

A heroku cli plugin to find your free dynos and data

Downloads

55

Readme

@heroku-cli/plugin-free

oclif Version Downloads/week License

The apps:free Heroku CLI plugin shows the apps using free dynos or free data (PostgreSQL & Redis).

Usage

To get started, install the plugin from NPM.

$ heroku plugins:install @heroku-cli/plugin-free

With the plugin installed, you can run it without any arguments to fetch all apps across personal and any Heroku Team you’re a part of.

$ heroku apps:free

=== Apps with Free Dynos & Data
 Name                           Team             Dyno Postgresql                     Redis
 ────────────────────────────── ──────────────── ──── ────────────────────────────── ────────────────────────────────────────────
 example-app-12345              none             true postgresql-flexible-54321      redis-vertical-1234
 example-prod-23456             none             true postgresql-acute-54321         none
 example-qa-34567               none             true none                           redis-clean-12345
 example-test-89012             none             true none                           none
 my-example-app                 none             true example-db,other-example-1234  redis-vertical-4567
 team-example-app               example-team     none postgresql-acute-12345         none
 team-example-app-test          example-team     none postgresql-aerodynamic-23456   redis-clean-98765

This table provides the following fields:

  • Name: This column contains the Heroku application name. In terminals that support hyperlinks, the link takes you to the resource page of the application.
  • Team: The team that owns the application. none means it’s a personal application.
  • Dyno: If this is true, then the application is using free dynos and must be upgraded to the hobby tier before Novermber 28, 2022.
  • Postgresql: This column contains the list of free heroku-postgresql add-ons in use. You can use the add-on name directly to remove it from the application. For example, heroku addons:remove postgresql-flexible-54321 -a example-app-12345.
  • Redis: This column contains the list of free heroku-redis add-ons in use. You can use the add-on name directly to remove it from the application. For example, heroku addons:remove redis-vertical-1234 -a example-app.

Flag: --team

This flag allows you to filter the list by the team. If none is passed, it only returns personal applications.

Flag: --csv

This flag returns the output formatted as a CSV instead of a table.

Table Flags

--columns

This flag restricts what columns are returned. It takes a comma separated quoted string: --column='name,dyno'.

--filter

This flag returns rows that match the condition specificed by the filter. It takes a quoted string: --filter='dyno=true'.

--sort

This flag returns an ascending sorted table by the column names. The columns are listed in priority order. It takes a quoted comma-separated list: --sort='team,name'.