patevs / learn_gatsby

Links, resources, and code related to my learning of the Gatsby JavaScript framework.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Learn Gatsby

Gatsby is a free and open source framework based on React that helps developers build blazing fast websites and apps.


Links & Resources


Quick Start

  1. Install the Gatsby CLI.

    npm install -g gatsby-cli
  2. Create a Gatsby site from a Gatsby starter.

    Get your Gatsby blog set up in a single command:

    # create a new Gatsby site using the default starter
    gatsby new my-blazing-fast-site
  3. Start the site in develop mode.

    Next, move into your new site’s directory and start it up:

    cd my-blazing-fast-site/
    gatsby develop
  4. Open the source code and start editing!

    Your site is now running at http://localhost:8000. Open the my-blazing-fast-site directory in your code editor of choice and edit src/pages/index.js. Save your changes, and the browser will update in real time!


Project Structure

.
├── .editorconfig
├── .gitignore
├── .np-config.json
├── LICENSE
├── package.json
└── README.md

About

Links, resources, and code related to my learning of the Gatsby JavaScript framework.

License:MIT License