Command's JS
common command's
A lot of tools today are offering a whole set of functionality to interact with their products. I believe utilising CLI’s is massively important for enhancing productivity when developing. I've listed ones that are documented well so you will have to check it out to figure out how to use them optimally.
We didn’t get to go over these in the first edition, but let’s get into it.
Vercel CLI is Vercel’s CLI tool for dead simple deployment.
npm install -g vercel
Netlify is a no frills builder, deployment tool and manager of modern web projects.
npm install -g netlify-cli
Surge is a tool to publish web apps to a CDN.
npm install -g surge
Gatsby is a Static Site Generator and Progressive Application Generator.
npm install -g gatsby-cli
create-react-app creates a React app.
npm install -g create-react-app
Vue CLI creates a Vue app.
npm install -g vue-cli
Hub is a great tool to interface with Github from the command line. Github CLI is currently in beta.
brew install hub
Last updated
Was this helpful?