This package has been deprecated

Author message:

Package has been renamed to @kontent-ai/core-sdk-angular-http-service. Please update your code to use the latest version

@kentico/kontent-angular-http-service
TypeScript icon, indicating that this package has built-in type declarations

4.2.0 • Public • Published

Angular Http service

This is an implementation of the IHttpService that can be used instead of the default http service available in Core package that uses axios package.

This library uses Angular's HttpClient to make http requests and can be used only in Angular applications.

Why and when should you use this library?

If you need to use server side rendering with prerender using Angular universal, you have to use Angular's built-in Http service because otherwise Angular will not wait until the requests are fetched from server and therefore your code would not be reflected in HTML of your page. You can find more information about the issue here

Example

Snippet from angular's component:

  private readonly deliveryClient: IDeliveryClient;

  constructor(angularHttpService: AngularHttpService) {
    this.deliveryClient = new DeliveryClient({
      projectId: 'da5abe9f-fdad-4168-97cd-b3464be2ccb9',
      httpService: angularHttpService
    });
  }

Package Sidebar

Install

npm i @kentico/kontent-angular-http-service

Weekly Downloads

15

Version

4.2.0

License

MIT

Unpacked Size

144 kB

Total Files

21

Last publish

Collaborators

  • martins1
  • xperience-npmjs-publisher