Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/taktik/typescript-http-client
A simple TypeScript HTTP client with Promise-based API and advanced filtering support
https://github.com/taktik/typescript-http-client
filtering http-client http-requests promise-api request-filtering typescript
Last synced: 17 days ago
JSON representation
A simple TypeScript HTTP client with Promise-based API and advanced filtering support
- Host: GitHub
- URL: https://github.com/taktik/typescript-http-client
- Owner: taktik
- Created: 2018-10-31T09:40:51.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-10-07T10:50:40.000Z (about 1 month ago)
- Last Synced: 2024-10-25T03:03:41.206Z (23 days ago)
- Topics: filtering, http-client, http-requests, promise-api, request-filtering, typescript
- Language: TypeScript
- Homepage:
- Size: 1.11 MB
- Stars: 5
- Watchers: 10
- Forks: 2
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# typescript-http-client
[![Build Status](https://travis-ci.com/taktik/typescript-http-client.svg?branch=master)](https://travis-ci.com/taktik/typescript-http-client)
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com)A simple TypeScript HTTP client with Promise-based API and advanced filtering support
### Basic usage
###### Simple GET request with string response:
```typescript
import expect from 'ceylon';
import { Response, Request, newHttpClient } from 'typescript-http-client'(async () => {
// Get a new client
const client = newHttpClient()
// Build the request
const request = new Request('https://jsonplaceholder.typicode.com/todos/1', { responseType: 'text' })
// Execute the request and get the response body as a string
const responseBody = await client.execute(request)
expect(responseBody)
.toExist()
.toBeA('string')
.toBe(`{
"userId": 1,
"id": 1,
"title": "delectus aut autem",
"completed": false
}`)
})()
```###### Typed response:
```typescript
import expect from 'ceylon';
import { Response, Request, newHttpClient } from 'typescript-http-client'class Todo {
completed: boolean
id: number
title: string
userId: number
}(async () => {
// Get a new client
const client = newHttpClient()
// Build the request
const request = new Request('https://jsonplaceholder.typicode.com/todos/1')
// Execute the request and get the response body as a "Todo" object
const todo = await client.execute(request)
expect(todo)
.toExist()
.toBeA('object')
expect(todo.userId)
.toBe(1)
})()
```### Filters
Multiple filters can be added to the httpClient, in a certain order, forming a chain of filters.
Filters can be used to:
* Alter any request property (headers, url, body, etc...)
* Alter any response property (headers, body, etc...)
* Short-circuit the chain by returning a custom response without proceeding with the HTTP call, allowing for example for client-side caching.
* Intercept some or all calls for debugging/logging purposesFilters must implement the `Filter` interface and implement the `doFilter` method:
```typescript
interface Filter {
doFilter(request: Request, filterChain: FilterChain): Promise>
}
```
The `request` parameter contains the request (possibly already modified by previous filters) and can be modified by the filter (or ignored)The `filterChain` parameter represents the chain of filters following the current filter
###### Filter full example : Transform the response body:
This example transforms the fetched Todos and modify their title
```typescript
import expect from 'ceylon';
import { Response, Request, Filter, FilterChain, newHttpClient } from 'typescript-http-client'class Todo {
completed: boolean
id: number
title: string
userId: number
}// Transform Todos : Alter title
class TodoTransformer implements Filter {
async doFilter (call: Request, filterChain: FilterChain): Promise> {
const response = await filterChain.doFilter(call)
const todo = response.body
todo.title = 'Modified title'
return response
}
}(async () => {
// Get a new client
const client = newHttpClient()
// Add our Todo tranformer filter
client.addFilter(new TodoTransformer(), 'Todo transformer', {
// Only apply to GET request with URL starting with
// 'https://jsonplaceholder.typicode.com/todos/'
enabled(call: Request): boolean {
return call.method === 'GET' &&
call.url.startsWith('https://jsonplaceholder.typicode.com/todos/')
}
})
// Build the request
const request = new Request('https://jsonplaceholder.typicode.com/todos/1')
// Execute the request and get the response body as an object
const todo = await client.execute(request)
expect(todo)
.toExist()
.toBeA('object')
expect(todo.userId)
.toBe(1)
expect(todo.title)
.toBe('Modified title')
})()
```
# Hierarchy of Filters![](images/filters.jpg)
# Testing
In the tests, you need to first in indicate which name space you are testing, and then precise which method. Both using describe. The entity tested is the first argument of describe.
The second argument of describe, is a function. In the function, you need another function called: it. This function also takes two arguments. The first is a string that is usefull only for future developpers (does nothing in the code) saying what result we expect from our test, and the second is once again a method, ending with an assert this time. This last method is the test.The hook beforeEach executes before every test.