Category: Tutorial

  • AngularJS First Example

    AngularJS applications are a mix of HTML and JavaScript. The first thing you need is an HTML page. Second, you need to include the AngularJS JavaScript file in the HTML page so we can use AngularJS: Note: You should always use the latest version of AngularJS, so it is not necessary to use the same…

  • Angular 7 with Bootstrap

    How to install Bootstrap for Angular project? Run the following command on command prompt: Further, when you use a project created with Angular CLI 6+ (check via ng v ), you’ll have an angular.json file instead of an .angular-cli.json file. In that file, you still need to add Bootstrap to the styles[] array, but the path should be node_modules/bootstrap/dist/css/bootstrap.min.css , NOT ../node_modules/bootstrap/dist/css/bootstrap.min.css . The leading ../ must…

  • AngularJS MVC Architecture

    MVC stands for Model View Controller. It is a software design pattern for developing web applications. It is very popular because it isolates the application logic from the user interface layer and supports separation of concerns. The MVC pattern is made up of the following three parts:

  • What is AngularJS

    Angular JS is an open source JavaScript framework that is used to build web applications. It can be freely used, changed and shared by anyone. Angular Js is developed by Google. It is an excellent framework for building single phase applications and line of business applications. Advantage of AngularJS There are a lot of JavaScript…

  • Angular 7 App files explanation

    See the structure of the Angular 7 app on WebStorm IDE (how it looks on IDE). For Angular 7 development, you can use either Visual Studio Code IDE or WebStorm IDE. Both are good. Here, we are using JetBrains WebStorm IDE. Files used in Angular 7 App folder Angular 7 App files which are mainly…

  • Angular 7 Project Setup (Create first app)

    Following are the Angular CLI commands to create the first Angular app. Run the following command to create your first Angular app. Navigate to your first app. Start your server to run app. Your server is running on localhost:4200. Now, go to the browser and open it. Now, you need an IDE to edit and…

  • AngularJS Tutorial

    AngularJS tutorial provides basic and advanced concepts of AngularJS. Our AngularJS tutorial is designed for beginners and professionals. Angular JS is an open source JavaScript framework by Google to build web applications. It can be freely used, changed and shared by anyone. Our AngularJS tutorial includes all topics of AngularJS such as mvc, expressions, directives,…