🚀 Practical project of the Rocketseat GoStack Bootcamp.
👷 Developed by Matheus Ramalho de Oliveira.
🔨 Systems Analyst, Full-Stack Developer.
🏡 Goiânia, Goiás, Brasil.
✉️ kastorcode@gmail.com
👍 instagram.com/kastorcode
Live 19: Gatsby
- Make a clone of this repository;
 - Enter the folder running 
cd gostack-live-19-gatsby; - Run 
yarnto install dependencies; - Run 
yarn startto start the development server; - Open the address 
http://localhost:8000in the browser; - Use the secondary link 
http://localhost:8000/___graphqlto make information query. Know more. 
├── node_modules
├── content
├── src
├── .gitignore
├── .prettierrc
├── gatsby-browser.js
├── gatsby-config.js
├── gatsby-node.js
├── gatsby-ssr.js
├── package.json
└── README.md
└── yarn.lock
/node_modules: Contains all project dependencies;/content: Does not come with the Gatsby, stores blog posts, created with Markdown;/src:Srcis a convention forsource code, here is the code related to the frontend of the site;.gitignore: Which files are ignored by GIT;.prettierrc: Prettier settings;gatsby-browser.js: Gatsby default Browser API file;gatsby-config.js: Main configuration file of a Gatsby website; Know more;gatsby-node.js: Gatsby default Node API file, we use to create the blog pages from thecontentfolder;gatsby-ssr.js: Gatsby default Server-side rendering API file;package.json: Manifest file for Node.js projects;yarn.lock: Automatically generated by Yarn.
- Introduction to Node.js
 - Creating Node.js project
 - Continuing Node.js project
 - CSS Flexbox
 - UI Design
 - Introduction to React
 - First project with ReactJS
 - First project with React Native
 - Front-end documentation
 - Flux architecture
 - Using React Hooks
 - Server-side rendering(SSR) with ReactJS
 - GraphQL
 - Expo
 - Creating ReactJS project
 - Creating React Native project
 - Animations with React Native
 - Full-stack app development
 - Node.js tests
 - Node.js deploy
 - ReactJS tests
 - React Native tests
 - ReactJS deploy
 - React Native publication
 - WebSocket with Express
 - Advanced patterns at Node.js
 - OmniStack SaaS(software as a service) and AdonisJS
 - Final challenge
 - Monorepo
 


