babel core
npm install --save-dev @babel/core
Here is what the above code is Doing:
1. We’re installing the Babel CLI globally.
2. We’re installing the Babel core package locally.
npm install --save-dev @babel/core
Here is what the above code is Doing:
1. We’re installing the Babel CLI globally.
2. We’re installing the Babel core package locally.
npm install -d -g react-devtools@3.x Here is what the above code is Doing: 1. We’re installing the react-devtools package globally. 2. We’re installing the latest version of the package that starts with 3. 3. We’re installing the package in development mode.
npx prettier –write path/to/my/file.html Here is what the above code is Doing: 1. npx is a tool that comes with npm 5.2+ and higher, as a version of npm that’s installed locally to your project when you run npm install. 2. prettier is the name of the package we want to run. 3. –write is…
npm i -g node-sass Here is what the above code is Doing: 1. We’re using the npm install command to install a package called node-sass. 2. The -g flag tells npm to install the package globally. 3. The global flag is important because it means that the package will be installed in a place where…
#For Ubuntu 14.04+ 64 Bit cd Downloads wget https://zoom.us/client/latest/zoom_amd64.deb sudo apt install ./zoom_amd64.deb #For Other Configs: #https://support.zoom.us/hc/en-us/articles/204206269-Installing-or-updating-Zoom-on-Linux Here is what the above code is Doing: 1. We’re changing the directory to Downloads. 2. We’re downloading the latest Zoom client for 64-bit Ubuntu. 3. We’re installing the Zoom client. If you’re using a different Linux distribution,…
#connect your device via usb adb usb adb tcpip 5555 adb connect 192.168.10.1:5555 Here is what the above code is Doing: 1. adb usb – This command sets the device to listen over USB. 2. adb tcpip 5555 – This command sets the device to listen over TCP/IP on port 5555. 3. adb connect 192.168.10.1:5555…
sudo apt remove mg ng-common npm install -g @angular/cli Here is what the above code is Doing: 1. Install the latest version of Node.js and npm. 2. Install the latest version of Angular CLI. 3. Remove the old version of Angular CLI. 4. Remove the old version of Angular CLI.