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

carraway

v1.0.53

Published

Tool to simplify creating a Gatsby site

Downloads

31

Readme

Tool to simplify building a Gatsby site. For more information see Motivation and Implementation below.

Installation

# using npm:

npm install gatsby carraway

# using yarn:

yarn add gatsby carraway

Usage

Create a gatsby.config.json file in your repos root or add a gatsby field to your package.json, with the following structure:

{
  "siteMetadata": {},
  "plugins": []
}

This will act the basis for the Gatsby site Carraway builds.

Building Site

To build your Gatsby site with Carraway, run:

carraway build

Development Mode

To run your Gatsby site in development mode with Carraway, run:

carraway develop

Cleaning Up

To clean up the artifacts created by Gatsby and Carraway, run:

carraway clean

Motivation

While building my website, the website for my surname, the AtomLinter website, and AtomBuild website I became very interested with idea of separating the content of a website from the code that renders it to a webpage.

Gatsby does a lot of the work for us by letting us isolate how data and content is handled from the React code that renders it. The framework then takes this one step further by allowing you to isolate entire website themes, and slotting in content and data.

Carraway aims to take this functionality to the next step with the goal of creating Gatsby sites with repos that contain no code, just the site's data, content, and configuration.

Sites using Carraway will still be using Gatsby, and you will have to configure it as such. However instead of configuring Gatsby in a gatsby-config.js at the repo's root, Carraway sites will be configured using JSON in a gatsby.config.json file at the repo's root or under the gatsby field in the repo's package.json.

Why Carraway?

In The Great Gatsby the reader follows the tale of narrator Nick Carraway as he recalls his summer with the titular character Jay Gatsby. Through the course of the book Nick befriends Gatsby and helps him attain a lifelong muse.

Similar to this dynamic of classic American literature, our Carraway simply hopes to make things easier for us and Gatsby.

Implementation

Much like the character its named after, this package is rather simple.

Carraway creates a gatsby-config.js for Gatsby to interact with, and invokes Gatsby for you. This lets us declare our site's configuration somewhere else, while providing it to Gatsby when Gatsby needs it.

Prior Art

  • Gatsby - powerful static-site generating framework
  • Docz - builds a Gatsby site based on repo content

License

Copyright Kepler Sticka-Jones 2019. Licensed ISC.