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-starter-zurg

v0.1.5

Published

The ultimate force of starter awesomeness in the galaxy of Gatsby

Downloads

5

Readme

Zurgbot Gatsby Starter

Here's What You Get

Getting Started

Requirements

Quick Start

Run the following in your favorite terminal:

gatsby new [directory] https://github.com/colbyfayock/gatsby-starter-zurg

Starting from Scratch

  • Set up Yarn: https://yarnpkg.com/lang/en/docs/install/
  • Install the Gatsby CLI globally:
yarn global add gatsby-cli
  • Inside the directory of your choice, scaffold a new Gatsby site:
gatsby new [directory] https://github.com/colbyfayock/gatsby-starter-zurg

For example, if I want my installation in ~/Code/new-gatsby-site, I would navigate to ~/Code and run:

gatsby new new-gatsby-site https://github.com/colbyfayock/gatsby-starter-zurg
  • Navigate to your new directory and run:
yarn develop
  • You should now be running a new Gatsby site locally! 🎉

More Details

Why Did I Include X Package?

Sass

CSS-in-JS is all the rage right now, but stylesheets have a lot of advantages unless you're building an application the size of Facebook (exaggeration). When using stylesheets, Sass provides a lot of power to make working with it dynamic with well thought out ways of managing imports to focus style development.

Bulma

Bulma has a lot of good things going for it, like it's developer friendly nature and it's customization options. I particularly like it's use of flexbox for columns (though others have similar qualities).

React Helmet

Working with the <head> is hard, and Helmet makes this easy.

React Icons

This package makes working with icons fun again, with little hassle, a wide variety of icons, and importantly, it renders the components as an SVG node which is great for an app. Bonus: it includes Font Awesome, which has a lot of great icons.

Eslint

Eslint is a great framework for JS linting and is the backbone of most linting applications.

Prettier

Prettier does a bit better of a job managing formatting, so it's set up to run on top of the Eslint config rather than maintaining 2.

StyleLint

StyleLint gives us the ability to provide similar linting and formatting that we would get with Eslint and Prettier for our Scss.

Jest

Jest is pretty easy to set up and use. It's also pretty fast which is a nice bonus.

Enzyme

Enzyme makes testing React components simpler with it's APIs around rendering out the components.

Husky

Husky provides a good easily manageable way to set up git hooks. Particularly here, we run linting before a commit is able to be complete.

Lint Staged

Rather than run linting on every single file every single commit, we can use lint staged to only run on the files that are... well... staged on git.

Bump

Bump provides a nice simple interface for working with versioning your app. Running bump along with the desired options gives you automation for git tagging, changelogs, npm package version increment, and more.