1.0.4 • Published 8 months ago

@peralva/services v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

@peralva/services

Services

NPM Version GitHub Release Date GitHub License NPM Downloads NPM Publish

Installation

npm install --save @peralva/services

Usage

import { services } from '@peralva/services';

const response = await services({
	url: 'https://jsonplaceholder.typicode.com/posts',
	method: 'GET',
});

if (response.status === 200) {
	response.body.forEach((value) => {
		console.log(value.title);
	});
}
1.0.4

8 months ago

1.0.2

8 months ago

1.0.1

8 months ago

1.0.0

8 months ago