0.0.4 • Published 6 years ago

@redneckz/hal-resource v0.0.4

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

hal-resource

REST+HAL client for Browser and NodeJS

NPM Version Build Status Coverage Status

Getting Started

Installation

$ npm install --save @redneckz/hal-resource
$ yarn add @redneckz/hal-resource

Basics

import { HALResource } from '@redneckz/hal-resource';

const resource = HALResource(window.fetch); // Axios can be used for NodeJS

const customersResource = resource('https://foo.com/api/v1/customers');

const sortedCustomers = customersResource.getList({ sort: { field: 'name', order: 'ASC' } });
sortedCustomers.then(console.log);

const firstCustomer = customersResource.getOne('first-customer-id');
firstCustomer.then(console.log);

const newCustomer = customersResource.create({ name: 'New Customer' });
newCustomer.then(console.log);

customersResource.delete('first-customer-id');

License

MIT