Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@data-eden/athena
Advanced tools
yarn add @data-eden/athena @data-eden/codegen @data-eden/cache @data-eden/network @data-eden/react
import { babelPlugin } from '@data-eden/codegen';
const config = {
plugins: [[babelPlugin, { tagName: 'graphql' }]],
};
export default config;
This library has several key components:
GraphQL Client The main interface of Athena is a GraphQL client that closely follows the API of urql. This client uses a custom fetch function from @data-eden/network and includes a caching layer built on top of @data-eden/cache.
Reactivity Layer Athena also includes a reactivity layer that keeps all GraphQL entities synchronized with the cache. This layer is built around the concept of Signals, which is explained in more detail in the README for @signalis/core.
The reactivity layer operates on two main principles:
All entities are wrapped in proxies that provide reactivity while hiding the actual signal from the consumer. This allows GraphQL response data to be interacted with as if it were a regular object.
All GraphQL responses are broken into entities, normalized, and cached so that all relationships between entities are encoded via the normalized store and kept in sync via the reactive proxy. The cache processes all GraphQL responses, ensuring that the underlying entities and their relationships are kept in sync while maintaining referential stability.
__typename
) with fragments that have type conditionsConsider e.g.
{
foo {
bar {
__typename
... on TypeA {
a
b
c
}
... on TypeB {
d
e
f
}
}
}
}
ID
field is. We only need to stash extra information for unconventional names (e.g. if the whole API always uses id
or urn
then we don't need to copy that data).v0.8.2 (2023-06-05)
athena
, cache
, codegen
, network
, react
FAQs
## Installation
The npm package @data-eden/athena receives a total of 4 weekly downloads. As such, @data-eden/athena popularity was classified as not popular.
We found that @data-eden/athena demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.