All Projects → aspnetboilerplate → abp-ng2-module

aspnetboilerplate / abp-ng2-module

Licence: other
Angular module wraps abp javascript API as angular services.

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to abp-ng2-module

angular-gulp-starter
Simple dev/prod build for Angular (2+) using gulp, systemjs, rollup, ngc (AOT), scss, Visual Studio
Stars: ✭ 18 (-66.67%)
Mutual labels:  angular2
ncg-crud-ngx-md
Angular 4+ Material Design CRUD/Admin app by NinjaCodeGen http://DNAfor.NET
Stars: ✭ 36 (-33.33%)
Mutual labels:  angular2
ngx-carousel
Angular Universal carousel is an lightweight , touchable and responsive library
Stars: ✭ 14 (-74.07%)
Mutual labels:  angular2
abpvn
ABPVN - Bộ lọc quảng cáo cho người việt
Stars: ✭ 63 (+16.67%)
Mutual labels:  abp
d3-ng2-demo
Reusable visual power? A demo of using D3 version 4 with Angular 2+.
Stars: ✭ 53 (-1.85%)
Mutual labels:  angular2
angular2-stretchy
angular2-stretchy is an Angular2 directive that automatically adjusts input width to fit content.
Stars: ✭ 12 (-77.78%)
Mutual labels:  angular2
angular-starter-yitimo
angular2-demo by yitim
Stars: ✭ 13 (-75.93%)
Mutual labels:  angular2
angular-esri-components
A set of Angular components to work with ArcGIS API for JavaScript v4.6
Stars: ✭ 43 (-20.37%)
Mutual labels:  angular2
ng2-multi-step-wizard-ui-router1
Series 3: Tutorials on creating an Angular 2 Multi-Step Wizard using UI-Router 1.0 and TypeScript 2.0.10
Stars: ✭ 33 (-38.89%)
Mutual labels:  angular2
skawa components example
Examples for skawa_components
Stars: ✭ 16 (-70.37%)
Mutual labels:  angular2
nice-mark
一款基于electron的markdown编辑器
Stars: ✭ 21 (-61.11%)
Mutual labels:  angular2
awesome-angular-learning
🕶️ Awesome Angular Learning Resources, Courses & Examples
Stars: ✭ 26 (-51.85%)
Mutual labels:  angular2
angular2-cookie-law
Angular2+ component that provides a banner to inform users about cookie law
Stars: ✭ 38 (-29.63%)
Mutual labels:  angular2
ngx-toasta
Simple and clean Toast notification library for AngularX (Angular2 and beyond)
Stars: ✭ 20 (-62.96%)
Mutual labels:  angular2
ng-apimock
Node plugin that provides the ability to use scenario based api mocking: for local development for protractor testing
Stars: ✭ 102 (+88.89%)
Mutual labels:  angular2
ng2-fused
FuseBox plugins and utilities for building Angular2 applications.
Stars: ✭ 13 (-75.93%)
Mutual labels:  angular2
a2d3
Flexible and extensible D3 directives for Angular 2
Stars: ✭ 22 (-59.26%)
Mutual labels:  angular2
angular2-social-login
Angular 2 OAuth social login facebook, google, LinkedIn etc using NodeJS server
Stars: ✭ 40 (-25.93%)
Mutual labels:  angular2
spring-boot-angular2-starter
Starter application. Spring Boot, Angular 2, TypeScript, Gulp, Gradle, SCSS.
Stars: ✭ 35 (-35.19%)
Mutual labels:  angular2
ng2-timezone-selector
A simple Angular module to create a timezone selector using moment-timezone.
Stars: ✭ 12 (-77.78%)
Mutual labels:  angular2

Important

Issues of this repository are tracked on https://github.com/aspnetboilerplate/aspnetboilerplate. Please create your issues on https://github.com/aspnetboilerplate/aspnetboilerplate/issues.

abp-ng2-module

Installation

To install this library, run:

$ npm install abp-ng2-module --save

Development

To generate all *.js, *.js.map and *.d.ts files:

$ ng build abp-ng2-module --prod

AbpHttpInterceptor

In order to use AbpHttpInterceptor in your module, first import it and AbpHttpInterceptor into your module like below;

import { AbpModule } from '@abp/abp.module';
import { AbpHttpInterceptor } from '@abp/abpHttpInterceptor';
import { HTTP_INTERCEPTORS } from '@angular/common/http';

then, add it to your module providers like below;

imports: [
    ///other imports
],
providers: [
    ///other providers
    { provide: HTTP_INTERCEPTORS, useClass: AbpHttpInterceptor, multi: true }
]

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].