class101

Class 101 Technology Blog

Quick start

Spread the local package.

yarn install

Please turn on the development server.

yarn start

Open the source code and get started.

Your site is now running at http://localhost:8000!

Note: You'll also see a second link: http: // localhost: 8000 / ___ graphql. This is a tool you can use to experiment with querying your data. Learn more about using this tool in the Gatsby tutorial.

Open the my-blog-starter directory in your code editor of choice and edit src / pages / index.js. Save your changes and the browser will update in real time!

Internal structure!

A quick look at the top-level files and directories you'll see in a Gatsby project.

├── node_modules
├── src
├── .gitignore
├── .prettierrc
├── gatsby-browser.js
├── gatsby-config.js
├── gatsby-node.js
├── gatsby-ssr.js
├── LICENSE
├── package-lock.json
├── package.json
└── README.md

GitHub