Answers for "gatsby js install"

2

gatsby js install

npm install -g gatsby-cli


//Create new project 
gatsby new [gatsby-project-name] https://github.com/gatsbyjs/gatsby-starter-hello-world
cd [gatsby-project-name]

//initialize developer server
gatsby develop 

//create production build the project
gatsby build
gatsby serve
Posted by: Guest on October-08-2020
4

create new project gatsby

//Create new project 
gatsby new [gatsby-project-name] https://github.com/gatsbyjs/gatsby-starter-hello-world
cd [gatsby-project-name]

//initialize developer server
gatsby develop 

//create production build the project
gatsby build
gatsby serve
Posted by: Guest on October-08-2020
-1

install gatsbyjs using npx

npx gatsby new gatsby-site https://github.com/gatsbyjs/gatsby-starter-default
Posted by: Guest on October-08-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language