1.1.0 • Published 7 years ago

@dschau/create-gatsby-blog-post v1.1.0

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

create-gatsby-blog-post

Build Status

A utility and CLI to scaffold out a blog post that follows the gatsby pages/ format, including a MD file with some default frontmatter (data) set up.

Set up

yarn add @dschau/create-gatsby-blog-post --dev

or for global usage

yarn global add @dschau/create-gatsby-blog-post

Usage

createPost(post: string, [options])

const { createPost } = require('create-gatsby-blog-post');

createPost('hello-world'); // will create the folder `src/pages/YYYY-MM-DD-hello-world` with `index.md` inside

Options

NameDescriptionDefault
datePass in a custom date object to use as the "now" value+new Date()
dateFormatFormat the date according to a date-fns format stringYYYY-MM-DD
rootRoot directory to use to place the blog post/markdown filesrc/pages
tagsWhether to place frontmatter "tags" key in each posttrue

CLI

create-post -- --date-format "YYYY-MMM-DD" hello-world