https://github.com/viur-framework/viur-shop-client
ViUR Shop JS Client
https://github.com/viur-framework/viur-shop-client
js-client viur viur-shop
Last synced: 4 months ago
JSON representation
ViUR Shop JS Client
- Host: GitHub
- URL: https://github.com/viur-framework/viur-shop-client
- Owner: viur-framework
- License: mit
- Created: 2024-03-15T17:35:55.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-14T17:13:35.000Z (over 1 year ago)
- Last Synced: 2025-12-26T16:39:38.430Z (5 months ago)
- Topics: js-client, viur, viur-shop
- Language: JavaScript
- Homepage: https://viur-framework.github.io/viur-shop-client/
- Size: 585 KB
- Stars: 1
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Usage
```javascript
// Client use
const sc = new ViURShopClient();
sc.cart_list()
.then(payload => {
for (let root_node of payload) {
console.debug(root_node);
// [...]
}
});
```
## Installation
Download node at [nodejs.org](https://nodejs.org) and install it, if you haven't already.
```sh
npm install @viur/viur-shop-client --save
```
This package is provided in these module formats:
- CommonJS
## Documentation
You can find the documentation at [viur-framework.github.io/viur-shop-client](https://viur-framework.github.io/viur-shop-client/) (WIP).
We're following [JSDoc](https://jsdoc.app/).
## License
[MIT](LICENSE)