An open API service indexing awesome lists of open source software.

https://github.com/onedionys/onedionys-http-client

A package for making HTTP requests to a server with easy-to-understand syntax.
https://github.com/onedionys/onedionys-http-client

http-client onedionys package-manager tea

Last synced: 4 months ago
JSON representation

A package for making HTTP requests to a server with easy-to-understand syntax.

Awesome Lists containing this project

README

          

Welcome to One Dionys - HTTP Client! 👋

A package for making HTTP requests to a server with easy-to-understand syntax. 💖









## 💾 Requirements

* `Web Browser` - Can be used as an emulator to build applications. Example [Chrome, Firefox, Safari & Opera].
* `Internet` - Because many use CDN and to make it easier to find solutions to all problems.

## 🎯 How To Use

#### Example Syntax

```javascript
const { HttpClient } = require('./src/http-client');

const httpClient = new HttpClient();

// GET
httpClient.get('https://jsonplaceholder.typicode.com/posts/1')
.then(response => {
console.log('GET Response:', response);
})
.catch(error => {
console.error('Error:', error);
});

// POST
httpClient.post('https://jsonplaceholder.typicode.com/posts', data)
.then(response => {
console.log('POST Response:', response);
})
.catch(error => {
console.error('Error:', error);
});
```

#### Explanation

* This package provides a simple HTTP client for making GET and POST requests using Axios library.

#### Return Value

* The methods get() and post() return a Promise that resolves with an object containing the HTTP status code and response data. If an error occurs during the request, it returns an object with the HTTP status code and error response data.

## 📆 Release Date

* v1.0.0 : 07 March 2024
* v1.0.1 : 11 March 2024
* v4.0.0 : 11 March 2024
* v4.0.1 : 13 March 2024
* v4.0.2 : 18 March 2024
* v5.0.0 : 31 March 2024

## 🧑 Author

* Facebook : Oned Ionys
* Instagram : @onedionys
* Twitter : @onedionys
* LinkedIn : @onedionys

## 📝 License

* Copyright © 2024 One Dionys
* **One Dionys - HTTP Client is an open source project licensed under the MIT license**

## ☕️ Suppport & Donation

Love One Dionys - HTTP Client? Support this project by donating or sharing with others in need.

**Made with ❤️ One Dionys**