
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
@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 0 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
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.