Tag: Hello World

GatsbyJS Hello World

Cool react based static site generator. Dig it.
GatsbyHelloWorld

Get Started
Gatsby is a blazing-fast static site generator for React.

Install Gatsby’s command line tool
npm install –global gatsby-cli
Using the Gatsby CLI
Create a new site.
gatsby new gatsby-site
cd gatsby-site
gatsby develop — Gatsby will start a hot-reloading development environment accessible at localhost:8000
Try editing the javascript pages in src/pages. Saved changes will live reload in the browser.
gatsby build — Gatsby will perform an optimized production build for your site generating static HTML and per-route JavaScript code bundles.
gatsby serve — Gatsby starts a local HTML server for testing your built site.