Netlify is one of the most amazing web development platform which is meant to multiply your productivity in the best possible way. The platform helps developers to build, test, and deploy websites.
We can use netlify cli to deploy website in short time.
# Install netlify CLI globally
npm install netlify-cli -g
### OR ###
yarn global add netlify-cli
# login to your netlify account
netlify login
And then just we can do deploy with following cli in the root path of project.
There should be building process before deploy.
netlify deploy
And select build path.
That’s it. Much easy.
For more information, please visit following sites.
https://www.netlify.com/
https://www.netlify.com/blog/2016/07/22/deploy-react-apps-in-less-than-30-seconds/
https://www.netlify.com/blog/2019/05/28/deploy-in-seconds-with-netlify-cli/
Thank you.