Blog

angular-cli

MEAN project using Angular cli (commands)

Install the dependencies into node_modules folder. #npm install Angular cli Installing the Angular/cli globally #[sudo] npm install -g @angular/cli Updating the Angular/cli globally #[sudo] npm uninstall -g angular-cli @angular/cli #npm …

coding-computer-data-577585

Useful Node Commands

Node Commands: Install the dependencies into node_modules folder. #npm install Install the package globally #npm install <package Name> Uninstall the package globally #npm uninstall <package Name> To update to latest …

pexels-christina-morillo-1181287

Useful Git Cheat Sheet

Configure name that is identifiable for credit when reviewing version history # git config –global user.name “<FIRST AND LAST NAME>” Configure email that will be associated with each history marker …

wireframe

Wire-frames Vs Actual designs

Standard definition of wire-frames: The wireframes are the skeleton of your application, a simplified visual concept of the future app. It doesn’t give any idea about the design but helps …

pexels-mac1

Find MAC address & IP of your system

Step1: Open Command Prompt Step2: Type command “ipconig /all” to see network configuration values Step3: The MAC address will be listed under heading “Ethernet adapter Ethernet”, under sub heading “Physical …

pexels-privacy

Terms & Conditions

All content provided on this blog is just for informational purposes only. The owner of this blog makes no representations as to the accuracy or completeness of any information on …

pexels-compile

Compile time & run time

Q1. Difference between Run time and compile time? A: To become an executable program, source code should be compiled into machine code. This compilation process is known as compile time. …