
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@artus-cli/plugin-npmcheckupdate
Advanced tools
A artus-cli plugin be used to display upgrade info
$ npm i @artus-cli/plugin-npmcheckupdate
// plugin.ts
export default {
npmcheckupdate: {
enable: true,
package: '@artus-cli/plugin-npmcheckupdate',
},
};
export interface NpmCheckUpdateConfig {
/** unpkg url, default is https://unpkg.com/ */
unpkgUrl?: string;
/** the file be used to cache last update info */
cacheFile?: string;
/** check inerval with local cache, default is 1 day */
checkInterval?: string | number;
/** upgrade policy, canbe major/minor/patch or dist-tags, default is latest */
upgradePolicy?: 'major' | 'minor' | 'patch' | DistTag;
/** whether enable CheckUpdateCommand, default is true */
enableCommand?: boolean;
/** whether enable intercept in all command? default is true */
enableInterceptor?: boolean | ((cmd: typeof Command) => boolean);
/** the position of upgrade info, default is after */
upgradeInfoPrintPosition?: 'before' | 'after';
/** customize your special upgrade info */
upgradeInfoHooks?: {
/** customize contents only */
contents?: (upgradeInfo: UpgradeInfo, contents: string[]) => string | string[];
/** customize all info */
fullContents?: (upgradeInfo: UpgradeInfo, fullContents: string[]) => string | string[];
};
}
FAQs
A artus-cli plugin be used to display upgrade info
The npm package @artus-cli/plugin-npmcheckupdate receives a total of 3 weekly downloads. As such, @artus-cli/plugin-npmcheckupdate popularity was classified as not popular.
We found that @artus-cli/plugin-npmcheckupdate demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.