
Security News
Feross on the 10 Minutes or Less Podcast: Nobody Reads the Code
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.
@release-notes/node
Advanced tools
An easy to use, human readable and machine processable schema for release notes.
| Title | Release Notes Node |
|---|---|
| Specification | Release Notes Draft 0.2.0 |
| Author | Alrik Zachert |
| License | MIT |
The goal of this repository is to provide a reference implementation of the Release Notes Specification.
$ npm i @release-notes/node
const ReleaseNotesLoader = require('@release-notes/node/lib/ReleaseNotesLoader');
const loader = new ReleaseNotesLoader();
loader.readReleaseNotesFile('./release-notes.yml', (err, releaseNotes) => {
if (err) {
if (err.isValidationError) {
return void console.error(
'Could not load release notes. Validation failed: ',
err.validationErrors
);
}
return void console.error(
'Could not load release-notes.yml',
err
);
}
console.info(
`Successfully loaded release notes ${releaseNotes.title}`
);
});
The files in this archive are released under MIT license. You can find a copy of this license in LICENSE.
FAQs
An easy to use, human readable and machine processable schema for release notes.
The npm package @release-notes/node receives a total of 228 weekly downloads. As such, @release-notes/node popularity was classified as not popular.
We found that @release-notes/node demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.

Research
/Security News
Campaign of 108 extensions harvests identities, steals sessions, and adds backdoors to browsers, all tied to the same C2 infrastructure.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.