Hello Everyone.
Today We are going to discuss about one of the best framework gatsby’s starter include react-bootstrap. Gatsby is a free and open-source framework based on React that helps developers build blazing-fast websites and apps.
First of all Install Node.js and npm in your system
Gatsby is built with Node.js. To get up and running with Gatsby, you’ll need to have a recent version installed on your computer. you can get it from here: https://nodejs.org/en/download/
To confirm Node.js installation Open up the terminal and Run node --version
it will show the currently installed version in your system after that check Run npm --version
as the same way.
After successfully installation now time to Install the Gatsby CLI.
Run npm install -g gatsby-cli
Now your system environment ready to develop gatsby website and we are going to get all the source code of gatsby bootstrap stater project. we can directly download from https://github.com/billyjacoby/gatsby-react-bootstrap-starter this link and also if you using git clone this repo by using git clone https://github.com/billyjacoby/gatsby-react-bootstrap-starter.git.
Whenever all the source we get now Run yarn install or yarn. yarn install is used to install all dependencies for a project.
After all done. now Start development server.
Run gatsby develop
Gatsby will start a hot-reloading development environment accessible by default at localhost:8000
Thank you !!
Leave a Reply