@4geit/ngx-cart-items-service

1.2.0 • Public • Published

@4geit/ngx-cart-items-service npm version


service that handles cart items

Installation

  1. A recommended way to install @4geit/ngx-cart-items-service is through npm package manager using the following command:
npm i @4geit/ngx-cart-items-service --save

Or use yarn using the following command:

yarn add @4geit/ngx-cart-items-service
  1. You need to import the NgxCartItemsService service in the module you want to use it. For instance app.module.ts as follows:
import { NgxCartItemsService } from '@4geit/ngx-cart-items-service';

And you also need to add the NgxCartItemsService service within the @NgModule decorator as part of the providers list.

@NgModule({
  // ...
  providers: [
    // ...
    NgxCartItemsService,
    // ...
  ],
  // ...
})
export class AppModule { }
  1. This service allows to override some variables. You can change a variable value as shown in the example below. First you will need to import those variables:
import { VAR1 } from '@4geit/ngx-cart-items-service';

And set the variable value in the providers list as below:

@NgModule({
  // ...
  providers: [
    // ...
    { provide: VAR1, useValue: 'VALUE1' },
    // ...
  ],
  // ...
})
export class AppModule { }

Here are the list of the variables this service allows you to override:

  • VAR1
  • VAR2
  • VAR3

Readme

Keywords

none

Package Sidebar

Install

npm i @4geit/ngx-cart-items-service

Weekly Downloads

1

Version

1.2.0

License

MIT

Last publish

Collaborators

  • geraldinestarke
  • fabianstarke
  • canercandan