
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
@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.18.0 (2023-08-03)
mocker
mocker
FAQs
## Installation
The npm package @data-eden/athena receives a total of 3 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
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.