🎉 Announcing Gatsby Post Manager
Steven Mercatante

Steven Mercatante @mercatante

About: Hey, I'm Steven Mercatante and I build things for the web. I'm a full stack software engineer with over 15 years of experience building websites, mobile apps, APIs, CMSs, and ETL pipelines.

Joined:
Dec 24, 2017

🎉 Announcing Gatsby Post Manager

Publish Date: Sep 17 '19
6 1

I use Gatsby for blogging and like to write a bunch of articles at once so I can release them over time. But, since I use flat files instead of a CMS, keeping track of my articles and their status (published, pending, unpublished) can get tricky - especially as the number of them grows. So, I built a tool to help manage them.

🎉Introducing Gatsby Post Manager🎉

Gatsby Post Manager (gpm for short) is a command line tool written in Node.js that makes it easy to track how many posts you have, as well as their status. It's meant to be installed as a global package so you can use it for any of your Gatsby sites.

$ npm install -g gatsby-post-manager

Currently, it has two commands: posts and post-stats. The project's README shows more detailed usage, but the gist is...

You can show all posts:

gpm-all-posts

Filter posts by a specific status:

gpm-pending-posts

Show a quick summary of post stats:

gpm-post-stats

gpm works by finding all of your markdown (including MDX) posts, parsing their frontmatter and determining their status, before rendering data to your terminal. The concepts behind gpm are pretty simple, and should be applicable to other static site generators.

If you've ever found keeping track of your Gatsby posts tricky, I hope you'll give Gatsby Post Manager a try.

👋 Enjoyed this post?

Join my newsletter and follow me on Twitter @mercatante for more content like this.

Comments 1 total

  • Chris Achard
    Chris AchardSep 17, 2019

    Neat! I don't have enough posts for this to be an issue for me yet, but when I get there, I'll check this out. Thanks :)

Add comment