Posts

2.0 First Application

Image
  First Applications Let’s create new application using Command Line Interface of Angular. Decide directory to create an application and open it in visual studio core. Open terminal using Ctrl + `. Now type following command to create new application. After execute this command you may see following command in case of your are using angular first time in your system. ng : File C:\Users\bsqua\AppData\Roaming\npm\ng.ps1 cannot be loaded because running scripts is disabled on this system. To solve this issue following these steps, 1.        Open PowerShell as an administrator. 1.        Type the following command: Set-ExecutionPolicy RemoteSigned 1.        Press Enter and then type "Y" to confirm the change.           Now try again the command to create an application. It will ask you the 2 questions, 1) Would you like to add Angular routing? Yes 2) Which...

1.0 Environment Setup

Image
Environment Setup NodeJS NPM Node Js is the engine that widely used for backend application development, it is also used for the server-side programming, non-blocking and event – driven server-side typical website and APIs. Install latest LTS (Long Time Support) version of NodeJS from https://nodejs.org/en/ official website. Once it will install you can use NPM in your command prompt. Angular CLI Angular CLI is the command line interface for angular command. You can use command in terminal for create, access, start application from command prompt. This will give direct access to developer to deal with the application and save the time for developing diff files to create the functionality in application. To install angular CLI use the following command in your terminal, Install Visual Studio Code This is an IDE that is used to write the code for many languages such as C, C++, Java, php, Angular Type Script etc. To install this software, you need to download it from https://visualstudio...