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

gatsby-theme-acmeblog-data

v2.0.3

Published

The parent theme (that defines all the data needed) that will feed the `@gastby-theme-acmeblog` and, in a way, `@gatsby-theme-acme` (basically will be shadow acmeblog) themes with data.

Downloads

2

Readme

gatsby-theme-acmeblog-data

The parent theme (that defines all the data needed) that will feed the @gastby-theme-acmeblog and, in a way, @gatsby-theme-acme (basically will be shadow acmeblog) themes with data.

Motivation

First of all I wanted to learn how to build gatsby themes, and there is not better way to learn than doing, secondly because I loved the idea of being able to separate data concerns with ui concerns and wanted to apply that to my projects.

This is a very simple theme that takes care of all the data concerns from building a blog with gatsby using Mdx.

Installation

with npm

npm install gatsby-theme-acmeblog-data

with yarn

yarn add gatsby-theme-acmeblog-data

Usage

Theme options

| key | default value| description | |----------|-------------|------| | blogPath | /blog | defines the url (slug) for the blog posts overview page | | postsContentPath | content/posts | location of all the posts files | | postsContentThumbnail | content/thumbnail | location of all the thumbnails images used in the posts | |pagesContentPath| content/pages| location of other pages that you would like to build using mdx| |otherImagesContentPath| content/images | location for any other images that you would like to post in your | |tagsPath| /tags| defines the url (slug) for all existing tags, shown in a overview tags page and used for listing all posts with a certain tag (prepending it to the tag itself, e.g. /blog/tags/yourtag) | |categoryPath|/category | defines the url (slug) used for listing all posts with a certain category (prepending it to the category itself, e.g. /blog/category/yourcategory) | |postTableOfContents|false| If you would like to have a table of contents in your posts page change it to true| |githubUrl|``| in case you are using github and want to create an edit link for your posts |

How to use theme options

In gatsby-config.js you will be able to define the options

module.exports = { 
  plugins: [
    {
      resolve: "gatsby-theme-acmeblog-data",
      options: { 
        blogPath: "/anything", // the default will be /blog
        tagsPath: "/mytags", // the default will be /tags
        categoryPath: "/mycategory", // the default will be /category
        postsContentPath: "myblog/posts", // the default will be content/posts
        pagesContentPath: "myblog/pages", // the default will be content/pages
        postsContentThumbnail: "myblog/thumbnails", // the default will be content/thumbnails
        otherImagesContentPath: "mysuperimages", // the default will be images
        postTableOfContents: false //the default is true
        githubUrl: `https://github.com/tiagofsanchez/tiagofsanchez/blob/master/`, // else defaults to '' and doesn't render
        gardenStartYear: 2021 // else it will default to 2019
      }
    },
  ],
};

How to use Mdx for your posts

Url (slug) of your posts

This will be automatically generated for you and it will be the name of the mdx file created

The frontmatter will need to have the following structure

---
title: "My firstpost"
date: "2020-05-21"
category: Mdx  
tags: 
    - post
    - mdx
    - gatsby
thumbnail:  ../images/gatsby-icon.png  
---
  • title - will be the title of the blog post
  • date - will be the date that will be shown in the blog post;
  • category - defines the category of this post
  • tags - the tags that you want this particular post to have
  • thumbnail - in case you want to give the post a thumbnail

Dev notes

There are a couple of things that I still need to do

  • [ ] thumbnail is not totally implemented at gatsby-theme-acmeblog
  • [ ] reading time for every posts
  • [ ] Pagination implementation
  • [ ] Next and previous post in the post page
  • [ ] attached a PDF in a post