
Security News
Google’s OSV Fix Just Added 500+ New Advisories — All Thanks to One Small Policy Change
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
corrieneuch
Advanced tools
A protocol not unlike JSON API.
It is intended to be more opinionated than the latter, so as to leave less up to the implementer.
Install:
$ npm install --save corrieneuch
### Overview
To give you a broad overview, here is an example of a possible response from a blog system.
{
"links": {
"$next": "https://blog/api/posts?page[number]=2"
},
"elements": [
{
"links": {
"$self": "https://blog/api/posts/1",
"author": "https://blog/api/users/1",
"comments": "https://blog/api/posts/1/comments"
},
"attributes": {
"title": "Hello, world!",
"content": "This is a test post."
}
},
{
"links": {
"$self": "https://blog/api/posts/2",
"author": "https://blog/api/users/1",
"comments": "https://blog/api/posts/2/comments"
},
"attributes": {
"title": "Test post 2",
"content": "This is second test post."
}
}
],
"meta": {
"count": 8
},
"includes": [
{
"links": {
"$self": "https://blog/api/users/1"
},
"attributes": {
"name": "Fred Flintstone",
"email": "fred@example.com"
}
},
{
"links": {
"$self": "https://blog/api/posts/1/comments"
},
"elements": [
{
"links": {
"$self": "https://blog/api/comments/1"
},
"attributes": {
"content": "This is a comment!"
}
}
]
},
{
"links": {
"$self": "https://blog/api/posts/2/comments"
},
"elements": []
}
]
}
This example demonstrates embedding multiple resources (including collections of resources) into the response body.
This library is currently beta-quality, the most notable defects being abject lack of documentation. It'll come shortly.
FAQs
A protocol not unlike JSON API
The npm package corrieneuch receives a total of 0 weekly downloads. As such, corrieneuch popularity was classified as not popular.
We found that corrieneuch 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
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
Research
/Security News
175 malicious npm packages (26k+ downloads) used unpkg CDN to host redirect scripts for a credential-phishing campaign targeting 135+ organizations worldwide.
Security News
Python 3.14 adds template strings, deferred annotations, and subinterpreters, plus free-threaded mode, an experimental JIT, and Sigstore verification.