Skip to content

viur-framework/viur-shop-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ViUR Shop JS Client

Badge showing GitHub pages documentation build Badge showing current NPM version Badge displaying the license
On the way to becoming a JS Client for the ViUR shop backend plugin.

Usage

// 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 and install it, if you haven't already.

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 (WIP).
We're following JSDoc.

License

MIT