Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@totvs/http

Package Overview
Dependencies
Maintainers
24
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@totvs/http

Http client

  • 0.0.1-20210413.1
  • npm
  • Socket score

Version published
Weekly downloads
6
decreased by-83.33%
Maintainers
24
Weekly downloads
 
Created
Source

@TOTVS/HTTP

This Package @totvs/http lets you make HTTP requests, like GET, POST, PUT and DELETE.

This plugin is compatible with Angular, React and Javascript projects.

Installation

Using npm: $ npm install --save @totvs/http

// using ES6 modules
import { HttpPlugin } from @totvs/http;
var http = new HttpPlugin();

// using CommonJS modules
var http = require('@totvs/http')
var http = new http.HttpPlugin();

Usage

Use these specific methods:

First, you need to know how parameters work:

Parameters:

URL: Address of your service. QueryParams: Query parameters are a defined set of parameters attached to the end of a url. They are extensions of the URL that are used to help define specific content or actions based on the data being passed. Headers: HTTP header fields are components of the header section of request and response messages in the Hypertext Transfer Protocol (HTTP). They define the operating parameters of an HTTP transaction. Body: Content to send

After this, you can use the methods:

GET

The GET method is used to retrieve information from the given server using a given URI.

this.http.get(URL, QueryParms, Headers).subscribe( res => {
    console.log(res);
});

POST

A POST request is used to send data to the server, for example, customer information, file upload, etc.

this.http.POST(URL, Body, QueryParms, Headers).subscribe( res => {
  console.log(res);
});

PUT

Replaces all current representations of the target resource with the uploaded content.

this.http.put(URL, Body, QueryParms, Headers).subscribe( res => {
    console.log(res);
});

PATCH

Replaces partial current representations of the target resource with the uploaded content.

this.http.patch(URL, Body, QueryParms, Headers).subscribe( res => {
    console.log(res);
});

DELETE

Removes all current representations of the target resource given by a URI.

this.http.delete(URL, QueryParms, Headers).subscribe( res => {
    console.log(res);
});

REQUEST

This is a generic way to call a method(GET, POST, PUT, PATCH and DELETE)

this.http.request(Method, URL, QueryParms, Headers).subscribe( res => {
    console.log(res);
});

FAQs

Package last updated on 13 Apr 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc