An open API service indexing awesome lists of open source software.

https://github.com/nichoth/h-shopping-cart

Static render function for shopping cart widget
https://github.com/nichoth/h-shopping-cart

Last synced: about 2 months ago
JSON representation

Static render function for shopping cart widget

Awesome Lists containing this project

README

          

# h shopping cart

Work in progress. Pass in a hyperscript function and data object, return HTML.

## install

$ npm install h-shopping-cart

## demo
[http://demos.nichoth.com/h-shopping-cart](http://demos.nichoth.com/h-shopping-cart
)

## example

```js
var renderCart = require('h-shopping-cart')
var bel = require('bel')
var style = require('h-shopping-cart/index.csjs') // csjs styles

var cart = renderCart(bel, {
rows: [
{
delete: bel`delete`
title: 'Example Product',
quantity: '3',
priceEach: '$7',
priceTotal: '$' + 7*3
}
]
})

document.body.appendChild(cart)
```