Posts

Showing posts from 2021

Angular Setup Environment

Image
  To setup Angular to run on our local machine, we need to have NodeJS installed on our machine. We must also ensure that our development environment includes Node.js and an npm package manager. Node.js Angular requires Node.js version 8.x or 10.x. To check your version, run node -v in a terminal/console window. To get Node.js, go to nodejs.org. npm (Node Package Manager) Angular, the Angular CLI, and Angular apps depend on features and functionality provided by libraries that are available as npm packages. To download and install npm packages, you must have an npm package manager. This Quick Start uses the npm client command line interface, which is installed with Node.js by default. To check that you have the npm client installed, run npm -v in a terminal/console window Install the Angular CLI Angular CLI is used to create angular projects, generate application and library code, and perform a variety of ongoing development tasks such as testing, bundling, and deployment. The Angular

Angular Overview and Basic Introduction

Image
  Angular Introduction Angular JS (Commonly knows as Angular)  is an exceptionally powerful front-end development framework for building sophisticated JavaScript apps. Angular has offers : Modularity that allows a team of developers to work on specific parts of an app concurrently Testability and maintainability of your app’s various pieces A big, thriving community of developers and organizations who love Angular Clean separation of the app’s UI from its logic, while still keeping them in sync Two-way data-binding — it’s pure magic (or sorcery?) — that updates the UI whenever a model changes (and vice versa) Useful out-of-the-box (as well as third-party-developed) modules such as Filters and Services that take the complexity out of stuff like data-processing, templating of UIs, dealing with HTTP requests, sanitizing and validating user inputs, animation, and (much, much) more Should you decide to learn Angular, you’ll be endowed with the skills required to develop cross-platform apps,

Angular : List of Topics

Image
We Start our new tutorial on Angular. In Angular we covers below topics in details: - Basic Introduction - Environment Setup - Project Setup - Components - Modules - Data Binding - Event Binding - Templates - Directive - Pipes - Routing - Services - Http Clients  - Use of Forms