Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@pagerduty/pdjs
Advanced tools
A simple JavaScript wrapper for the PagerDuty APIs.
For full API Reference see this page.
npm install --save @pagerduty/pdjs
REST API calls can be done using the convenience methods or by passing in a url
or endpoint
.
There are some simple convience methods. get()
, post()
, put()
, and delete()
.
import {api} from '@pagerduty/pdjs';
const pd = api({token: 'someToken1234567890'});
pd.get('/incidents')
.then({data, resource, next} => console.log(data, resource, next))
.catch(console.error);
// Similarly, for `post`, `put`, `patch` and `delete`.
pd.post('/incidents', { data: { ... } }).then(...)
tokenType
Allows you to set either token
or bearer
tokens. Defaults to token
but provides ability to use bearer
as well.
api
you'll pass int the tokenType
parameter, like so:const pd = api({token: 'someBearerToken1234567890', tokenType: 'bearer'});
url
or endpoint
// Calling the returned function with a `endpoint` or `url` will also send it.
pd({
method: 'post',
endpoint: '/incidents',
data: {
...
}
}).then(...)
The PD object always returns an APIResponse object which contains some raw data as well as a convenient shortcut to directly access the returns Resource.
pd.get('/incidents')
.then({resource, data, response, next} => {
console.log(resource); // Contains the data of resource request. In this example the 'incidents' data.
console.log(data); // The raw data returned from the API, also contains pagination information.
console.log(response); // The response object returned from the cross-fetch
console.log(next); // A convenience function to help with pagination
})
.catch(console.error);
There's an convience method all
that attempts to fetch all pages for a given endpoint and set of parameters. For convenience this function supports both offset and cursor based pagination.
Note that the PagerDuty API has a limit for most endpoints and recommends using parameters to refine searches where more results are necessary. More information can be found in the Developer Documentation.
The response object of an API call also contains a nextFunc
which can be used to define your own Pagination function if you feel included.
import {api} from '@pagerduty/pdjs';
const pd = api({token: 'someToken1234567890'});
pd.all('/incidents')
.then({data, resource} => console.log(data, resource))
.catch(console.error);
The API interface allows for some extra parameters to be included.
server
To use this library with a different service region use this parameter to change the root url of requests. Default: api.pagerduty.com
.
pd({
method: 'post',
endpoint: '/incidents',
server: 'api.eu.pagerduty.com',
data: {
...
}
}).then(...)
headers
Some endpoints require the setting of extra headers
such as a From
header.
pd({
method: 'post',
endpoint: '/incidents',
headers: {
'From': "me@example.com"
},
data: {
...
}
}).then(...)
There is some very simple retry logic baked into each request in the case that the PagerDuty API rate limits your requests (only when it responds HTTP Code 429). Requests will retry 3 times waiting 20 seconds between each request. If the request is still being rate limited after 3 attempts the client will simply return the 429 response.
Events V2 is supported along with Change Events.
import {event} from '@pagerduty/pdjs';
event({
data: {
routing_key: 'YOUR_ROUTING_KEY',
event_action: 'trigger',
dedup_key: 'test_incident_2_88f520',
payload: {
summary: 'Test Event V2',
source: 'test-source',
severity: 'error',
},
},
})
.then(console.log)
.catch(console.error);
import {change, trigger, acknowledge, resolve} from '@pagerduty/pdjs';
change({
"routing_key": "YOUR_ROUTING_KEY",
"payload": {
"summary": "Build Success:!",
"timestamp": "2015-07-17T08:42:58.315+0000",
"source": "prod-build-agent",
"custom_details": {
"build_state": "passed",
"build_number": "220",
"run_time": "1337s"
}
},
"links": [{
"href": "https://buildpipeline.com",
"text": "View in Build Pipeline"
}]
})
.then(console.log)
.catch(console.error);
trigger({...})
.then(console.log)
.catch(console.error);
acknowledge({...})
.then(console.log)
.catch(console.error);
resolve({...})
.then(console.log)
.catch(console.error);
Two browser-ready scripts are provided:
fetch
.fetch
polyfill -- mostly IE 11.Either of these files can be used by copying them into your project and including them directly, with all functions namespaced PagerDuty
:
<script src="https://raw.githubusercontent.com/PagerDuty/pdjs/main/dist/pdjs.js"></script>
<script>
PagerDuty.api({token: 'someToken1234567890', endpoint: '/incidents'})
.then(response => console.log(response.data))
.catch(console.error);
</script>
FAQs
A new simple JavaScript wrapper for the PagerDuty API
The npm package @pagerduty/pdjs receives a total of 79,123 weekly downloads. As such, @pagerduty/pdjs popularity was classified as popular.
We found that @pagerduty/pdjs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.