Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
testing-farm
Advanced tools
Typesafe access to Testing Farm's REST API.
import TestingFarmAPI from "testing-farm";
const api = new TestingFarmAPI("https://api.dev.testing-farm.io/v0.1");
await api.about();
documentation of - GET /requests
const queryParams = { /* https://api.dev.testing-farm.io/redoc#operation/get_test_requests_v0_1_requests_get */ }
const requests: Requests[] = await api.requests(queryParams);
const requests: unknown = await api.requests(queryParams, false);
documentation of - POST /requests
const request = { /* https://api.dev.testing-farm.io/redoc#operation/request_a_new_test_v0_1_requests_post */ }
const response: NewRequestResponse = await api.newRequest(request);
const response: unknown = await api.newRequest(request, false);
documentation of - GET /requests/{request_id}
const details: Request = await api.requestDetails('test-id');
const details: unknown = await api.requestDetails('test-id', false);
documentation of - DELETE /requests/{request_id}
const response: CancelRequestResponse = await cancelRequest('test-id');
const response: unknown = await cancelRequest('test-id', false);
documentation of - GET /composes
const composes: Composes = await api.composes();
const composes: unknown = await api.composes(false);
documentation of - GET /composes/{ranch}
const composes: Composes = await api.ranchComposes('public');
const composes: unknown = await api.ranchComposes('public', false);
documentation of - GET /about
const about: About = await api.about();
const about: unknown = await api.about(false);
FAQs
A NodeJS module to access Testing Farm instances through the REST API.
The npm package testing-farm receives a total of 15 weekly downloads. As such, testing-farm popularity was classified as not popular.
We found that testing-farm 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.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.