@ng-ecom-kit/ng-shopify-cart
v0.0.25
Published
Shopify Cart.
Downloads
50
Readme
NgShopifyCart
Shopify Cart.
Install
ng add @ng-ecom-kit/ng-shopify-cart
- Add
NgShopifyCartModule.forRoot({refreshCartAction: yourActionToRefreshCart, selectUserAccessToken: your-selector})
to your app.modules.
- refreshCartAction: Actual to update the cart on. This could be an init action, page router, or something on a timer. You should minimally run this at least on page load.
- selectUserAccessToken: (optional) A function that accepts the state and returns your shopify user access token for the storefront API. If you do not need to associate a shopify Checkout with a user, you may leave this blank.
Adding the shopify storefront api header is not supported by this package at this time (you can use a angular interceptor for this)
Code scaffolding
Run ng generate component component-name --project ng-shopify-cart
to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module --project ng-shopify-cart
.
Note: Don't forget to add
--project ng-shopify-cart
or else it will be added to the default project in yourangular.json
file.
Build
Run ng build ng-shopify-cart
to build the project. The build artifacts will be stored in the dist/
directory.
Publishing
After building your library with ng build ng-shopify-cart
, go to the dist folder cd dist/ng-shopify-cart
and run npm publish
.
Running unit tests
Run ng test ng-shopify-cart
to execute the unit tests via Karma.
Further help
To get more help on the Angular CLI use ng help
or go check out the Angular CLI README.