Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@lokalise/frontend-http-client
Advanced tools
Opinionated HTTP client for the frontend.
Note that it is a ESM-only package.
import wretch from 'wretch'
import { z } from 'zod'
const client = wretch('http://localhost:8000')
const queryParamsSchema = z.object({
param1: z.string(),
param2: z.number(),
})
const requestBodySchema = z.object({
requestCode: z.number(),
})
const responseBodySchema = z.object({
success: z.boolean(),
})
const responseBody = await sendPost(client, {
path: '/',
body: { requestCode: 100 },
queryParams: { param1: 'test', param2: 123 },
queryParamsSchema,
requestBodySchema,
responseBodySchema,
})
SDK methods has a parameter (isEmptyResponseExpected
) to specify if 204 response should be treated as an error or not. By default it is treated as
valid except on sendGet
method where it is treated as an error. Usage example:
const response = await sendGet(client, {
path: '/',
isEmptyResponseExpected: true,
})
if 204
responses are expected, the library will return null, if not, it will throw an error.
SDK methods has a parameter (isNonJSONResponseExpected
) to specify if non json responses should be treated as an error
or not. By default it is treated as valid except on sendGet
method where it is treated as an error. Usage example:
const response = await sendGet(client, {
path: '/',
isNonJSONResponseExpected: true,
})
if non-JSON responses are expected, the library will return null, if not, it will throw an error.
This library is brought to you by a joint effort of Lokalise engineers:
FAQs
Opinionated HTTP client for the frontend
The npm package @lokalise/frontend-http-client receives a total of 775 weekly downloads. As such, @lokalise/frontend-http-client popularity was classified as not popular.
We found that @lokalise/frontend-http-client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.