onedionys-http-client

5.0.0 • Public • Published

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

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

📝 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

Package Sidebar

Install

npm i onedionys-http-client

Weekly Downloads

493

Version

5.0.0

License

ISC

Unpacked Size

13.2 kB

Total Files

6

Last publish

Collaborators

  • onedionys
  • onedionysx