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.
@reactway/api-builder
Advanced tools
An easy api client builder for applications with identity.
An easy api client builder for applications with identity.
$ npm install @reactway/api-builder
To start using api builder first it needs to make an ApiConfiguration
with structure (host field is required). Then initiate class with created configuration.
interface ApiConfiguration {
host: string;
path?: string;
defaultHeaders?: { [index: string]: string };
defaultAuthRequired?: boolean;
identity?: IdentityMechanism;
defaultQueryParams?: QueryParams;
requestQueueLimit?: number;
}
const apiConfiguration: ApiConfiguration = {
host: "https://example.com"
};
const ApiClient = new ApiBuilder(apiConfiguration);
To make request you have create an ApiRequest
typed object or arrow function if you want to pass parameters. method
and requestPath
fields are required for ApiRequest
.
const getExample: ApiRequest = {
method: HttpMethods.GET
requestPath: PATH_GET
};
const getExample = (id: number): ApiRequest => {
return {
method: HttpMethods.GET,
requestPath: `/${id}`
};
};
Only http(s) method GET
does not take body
param. Rest of methods takes passed typed body
. To pass typed body
to a request here is an example.
interface Person {
name: string;
surname: string;
}
const getExample = await apiBuilder.post<Person>({
requestPath: "/post",
body: {
name: "John",
surname: "Snow"
}
});
Also you can pass QueryParams
.
type QueryParams = { [key: string]: string | number | Array<string | number> };
const getExample: ApiRequest = {
method: HttpMethods.GET
requestPath: PATH_GET,
queryParams: {
page: 2
}
};
WIP
WIP
Released under the MIT license.
FAQs
An easy api client builder for applications with identity.
The npm package @reactway/api-builder receives a total of 3 weekly downloads. As such, @reactway/api-builder popularity was classified as not popular.
We found that @reactway/api-builder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.