@tutur17449/json-placeholder-sdk
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

@tutur17449/json-server-sdk

🚀 Work around https://jsonplaceholder.typicode.com/ 🚀

Installation

yarn add @tutur17449/json-server-sdk

Usage

import { jsonPlaceholderApi } from '@tutur17449/json-placeholder-sdk';

await jsonPlaceholderApi.posts.getbyId(1);

await jsonPlaceholderApi.posts.getAll(new URLSearchParams({ userId: '1' }));

await jsonPlaceholderApi.posts.update(1, {
  title: 'foo',
});

await jsonPlaceholderApi.posts.create({
  title: 'foo',
  body: 'bar',
  userId: 1,
  id: 1,
});

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i @tutur17449/json-placeholder-sdk

Weekly Downloads

6

Version

1.0.1

License

MIT

Unpacked Size

5.04 kB

Total Files

10

Last publish

Collaborators

  • tutur17449