Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
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.
@octopusdeploy/api-client
Advanced tools
The TypeScript API Client for Octopus Deploy is easy to use after it's been initialized. Refer to Getting Started for step-by-step set of instructions on setup, initialization, and usage of its functionality.
The reference documentation for this library is auto-generated via Typedoc and made available through GitHub Pages: octopusdeploy.github.io/api-client.ts
Run npx typedoc src
to update the documentation.
import { Client, ClientConfiguration, ProjectRepository } from "@octopusdeploy/api-client";
const configuration: ClientConfiguration = {
userAgentApp: 'CustomTypeScript',
instanceURL: "instance-url",
apiKey: "api-key",
agent: new Agent({ proxy: { hostname: "127.0.0.1", port: 8866 } }), // proxy agent if required
};
const client = await Client.create(configuration);
const repository = new ProjectRepository(client);
const projectName: string = "project-name";
console.log(`Getting project, "${projectName}"...`);
let project: ProjectResource | undefined;
try {
const projects = await repository.list({ partialName: projectName });
project = projects[0];
} catch (error) {
console.error(error);
}
if (project !== null && project !== undefined) {
console.log(`Project found: "${project?.Name}" (${project?.Id})`);
} else {
console.error(`Project, "${projectName}" not found`);
}
FAQs
TypeScript API client for Octopus Deploy
The npm package @octopusdeploy/api-client receives a total of 630 weekly downloads. As such, @octopusdeploy/api-client popularity was classified as not popular.
We found that @octopusdeploy/api-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.
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.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.