
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
projectmanager-sdk
Advanced tools
Software development kit for the ProjectManager.com API. for TypeScript
This software development kit contains all API definitions for the ProjectManager.com REST API v4 as a software development kit for TypeScript / JavaScript.
The ProjectManager API v4 is available as a REST definition in OpenAPI format. You can read the documentation online at developer.projectmanager.com.
This SDK provides a few capabilities that developers may find more useful than hand-writing REST API code:
Here's how to add this SDK to create a project.
npm install projectmanager-sdk
To create an API client for ProjectManager, you must specify:
For the ProjectManager production environment, the environment URL is https://api.projectmanager.com.
To obtain a ProjectManager.com API key:
import process from 'process';
import { ProjectManagerClient } from 'projectmanager-sdk';
// Construct a client to talk to the ProjectManager API using your server and token
var client = ProjectManagerClient
.withEnvironment(process.env["PM_ENV"])
.withBearerToken(process.env["PM_API_KEY"]);
// Call the RetrieveMe endpoint to verify that you are logged on
var result = await client.Me.retrieveMe();
if (result.success) {
console.log(`Connected as ${result.data?.fullName} (${result.data?.emailAddress})`);
} else {
console.log(`Failed to connect: ${result.error}`);
}
FAQs
Software development kit for the ProjectManager.com API. for TypeScript
The npm package projectmanager-sdk receives a total of 225 weekly downloads. As such, projectmanager-sdk popularity was classified as not popular.
We found that projectmanager-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.