0.0.2 • Published 1 year ago

svelte-http-store v0.0.2

Weekly downloads
-
License
-
Repository
-
Last release
1 year ago

svelte-http-store

A Svelte store backed by the fetch API.

Installation

pnpm install -D svelte-http-store

Example

// in src/lib/stores/cart.js
import { httpStore } from 'svelte-http-store'

// performs a `GET /cart` request
export const cart = httpStore('/cart')

// store.refresh() will request `GET /cart` again
cart.refresh()

// call store.fetch() to mutate:
cart.fetch('/cart', { method: 'PATCH' })

Feel free to wrap the store.fetch() with functions that fit your domain:

// example: function to add items to the cart
cart.add = ({ product, quantity }) => {
  const url = `/cart/${product.id}`
  const body = JSON.stringify({ quantity })

  cart.fetch(url, { method: 'POST', body })
}

// example: function to clear the cart
cart.clear = () => {
  cart.fetch('/cart', { method: 'DELETE' })
}

License

MIT

0.0.2

1 year ago

0.0.1

1 year ago