
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@stackbit/contentful-listener
Advanced tools
Contentful's content listener based on Contentful's sync API
The Contentful listener listens for content changes in Contentful and invokes the provided callback when such changes occur.
Usage:
import { ContentfulListener } from '@stackbit/contentful-listener';
const contentfulListener = new ContentfulListener({
spaceId: process.env.CONTENTFUL_SPACE_ID,
accessToken: process.env.CONTENTFUL_PREVIEW_API_KEY,
environment: 'master',
host: 'preview.contentful.com',
pollingIntervalMs: 1000,
callback: (result: CallbackResponse) => {
// Do something
}
});
The result is a an object having the following interface, very similar to Contentful's Sync API response:
export interface CallbackResponse {
entries: Array<Entry<any>>;
assets: Array<Asset>;
deletedEntries: Array<Entry<any>>;
deletedAssets: Array<Asset>;
}
FAQs
Contentful's content listener based on Contentful's sync API
The npm package @stackbit/contentful-listener receives a total of 28 weekly downloads. As such, @stackbit/contentful-listener popularity was classified as not popular.
We found that @stackbit/contentful-listener demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 18 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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.