Cours

Angular
Do an upload with Angular and ngx-upload – Learn Angular
Today, I'm going to tell you about doing an upload with Angular. To do that, we are going to use the library ngx-upload. it allows to do an upload with drag & drop and to handle events easily. Ngx-upload is distinguished by its agnostic character; in other words it can be integrated into anyone presentation framework. The best way

Angular
How can we have multiple instances of HttpClient with Angular ? – Learn Angular
Since Angular 4.3, the Angular framework offer a new HTTP client named HttpClient. This HTTP client put forward a new interceptor mechanism. But, it turns out that this mechanism is common to the entire application. Assume that you have to consume two Rest API from 2 different providers. With the current mechanism, and using the

Angular
Retrieve your ngfactory, .metadata.json and .ngsummary.json with Angular 5
Since Angular 5 ang Angular CLI 1.5, Typescript files are no longer emitted on AOT compilation. Indeed, with Angular CLI 1.5, a new Webpack plugin arrived: AngularCompilerPlugin. This last is specially used when we compile an Angular 5+ application. Previously, we used another Webpack plugin: AOTPlugin. The consequence is that the compiler no longer uses the genDir property

Angular
Comment choisir entre React et Angular ?
Choisir entre Angular et React est une décision difficile à prendre. Les deux technologies offrent des capacités incroyables, mais sont ...

Angular
A quoi Sert ANgular ?
Introduction: Angular est une plateforme JavaScript open source très populaire qui facilite le développement d’applications riches et interactives. La grande ...

Angular
angular cdn
Introduction: Angular CDN est un réseau en ligne spécialement conçu pour fournir une version dynamique du célèbre framework JavaScript Open ...

Angular
ionic angular
Introduction: Ionic Angular est un cadre open source qui combine la popularité des applications natives avec la richesse des applications ...

Angular
Les modules Angular – Learn Angular
L'équipe Angular a travaillé dur pour nous offrir un framework à l'architecture robuste et évolutive. Et comme ils sont également bons en dessin, ils nous ont offert ce magnifique dessin en guise de spécification : On retrouve ainsi les différents concepts que sont le data binding, les components, les directives, les injectors, et les modules. Nombreux

Angular
Le Data Binding Angular – Learn Angular
Le Data Binding est un élément essentiel dans les frameworks de Single Page Application. Il permet de synchroniser la vue au modèle JavaScript sous-jacent. Voici un schéma général du fonctionnement du Data Binding : Angular a défini quatre sortes de Data Binding pour synchroniser le template et le Component. Il est ainsi possible de

Angular
Les pipes – Learn Angular
Le principe d'un pipe est de prendre en entrée une donnée et de la transformer comme vous le désirez dans le but de l'afficher à l'utilisateur. Un exempale courant d'utilisation des pipes est le formatage des dates. Si vous devez afficher un objet Date dans votre template en utilisant l'interpolation, vous allez voir s'afficher un simple toString()