Security News
Research
Supply Chain Attack on Rspack npm Packages Injects Cryptojacking Malware
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
@abcnews/capi-fetch
Advanced tools
Grab a Core Media document object from the Preview / Live Content API, based on the current execution domain
Grab a Core Media document object from the Preview / Live Content API, based on the current execution domain
$ npm i @abcnews/capi-fetch
import capiFetch from '@abcnews/capi-fetch';
capiFetch(10736062, (err, doc) => {
if (!err) {
console.log(doc);
// > {executionTime: "367 ms", id: 10736062, docType: "Article", ...}
}
});
If your project's JS is currently executing in a page on nucwed.aus.aunty.abc.net.au
, requests will be made to Preview CAPI (http://nucwed.aus.aunty.abc.net.au/api/v2/*
), otherwise they'll be made to Live CAPI (https://content-gateway.abc-prod.net.au/api/v2/*
).
If you want to direct a single request to Live CAPI, regardless of the current execution domain, pass true
as a 3rd argument to capiFetch
.
declare function capiFetch(
cmid: string | number,
done: (err?: ProgressEvent | Error, doc?: Object) => void,
forceLive?: boolean,
forcePreview?: boolean
): void;
To run the /example
project, you need to pretend your local machine is www.abc.net.au
to work around cross-domain request limitations on the Content APIs...
127.0.0.1 mock.www.abc.net.au
127.0.0.1 mock.nucwed.aus.aunty.abc.net.au
$ npm start
The best way to check that the Preview / Live switching works is to use this module inside a project hosted on *.abc.net.au
.
For testing purposes, you can direct all requests to Live CAPI by appending ?prod=1
to your current page URL.
FAQs
Grab a Core Media document object from the Preview / Live Content API, based on the current execution domain
The npm package @abcnews/capi-fetch receives a total of 8 weekly downloads. As such, @abcnews/capi-fetch popularity was classified as not popular.
We found that @abcnews/capi-fetch demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 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
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.
Security News
Sonar’s acquisition of Tidelift highlights a growing industry shift toward sustainable open source funding, addressing maintainer burnout and critical software dependencies.