
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
@totvs/http
Advanced tools
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.
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();
Use these specific methods:
First, you need to know how parameters work:
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:
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);
});
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);
});
Replaces all current representations of the target resource with the uploaded content.
this.http.put(URL, Body, QueryParms, Headers).subscribe( res => {
console.log(res);
});
Replaces partial current representations of the target resource with the uploaded content.
this.http.patch(URL, Body, QueryParms, Headers).subscribe( res => {
console.log(res);
});
Removes all current representations of the target resource given by a URI.
this.http.delete(URL, QueryParms, Headers).subscribe( res => {
console.log(res);
});
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
Http client
The npm package @totvs/http receives a total of 43 weekly downloads. As such, @totvs/http popularity was classified as not popular.
We found that @totvs/http demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 21 open source maintainers collaborating on the project.
Did you know?

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.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.