rest-client
npm install @iwpnd/rip-tsFound myself rewriting the same rest client all over again and wanted to put a
stop to that. This will be the base of every upcoming http clients going forward.
``sh
yarn install @iwpnd/rip-ts
npm install @iwpnd/rip-ts
`
`typescript
import { RestClient } from '@iwpnd/rip-ts';
type User = {
id: string;
name: string;
isActive: boolean;
isAdmin: boolean;
};
const client = new RestClient('http://localhost:3000');
// GET
await client.get
/*
* Resolve parameter
*/
await client.get
params: { id: 1 },
});
/*
* Resolve query string
*/
await client.get
query: { isActive: true, isAdmin: true },
});
// > http://localhost:3000/users?isActive=true&isAdmin=true
await client.put('/users/:id', {
params: { id: 1 },
body: { name: 'Rick Roll' },
});
// POST
await client.post('/users', {
body: { id: 2, name: 'Jean Claude van Damme' },
});
// PUT
await client.put('/users/:id', {
params: { id: 1 },
body: { name: 'Rick Roll' },
});
// DELETE
await client.delete('/users/:userId', { params: { userId: 1 } });
`
#### Timeout
`typescript
import { RestClient } from '@iwpnd/rip-ts';
type User = {
id: string;
name: string;
isActive: boolean;
isAdmin: boolean;
};
const client = new RestClient('http://localhost:3000', {
timeout: 100, // ms, default: 30000
});
// GET
await client.get
// throws RequestTimeoutError after 100ms
`
Contributions are neither expected nor encouraged. If you for whatever
reason you want to contribute here, create an issue describing your problem first.
Unsolicited PRs are going to be deleted straight up.
If we evaluated that you're in the right repository,
are of a clear state of mind and have cause to do what you wanna do, please
follow the steps below.
1. Fork the Project
2. Create your Feature Branch (git checkout -b feat/my-amazing-feature)git commit -m 'feat: some amazing feature'
3. Commit your Changes ()git push origin feat/my-amazing-feature
4. Push to the Branch ()
5. Open a Pull Request
Distributed under the MIT License. See LICENSE.txt` for more information.
Benjamin Ramser - @iwpnd - iwpnd@posteo.com
Project Link: https://github.com/iwpnd/rip-ts