Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
@gospime/apollo-client
Advanced tools
Apollo HTTP client with response caching
Options:
const uri = `https://${hostname}:${port}${graphqlPath}`;
// options of https.Agent
const options = {
//rejectUnauthorized: false // Skip SSL-restrictions
};
ApolloOptions: fetch-policy
const apolloOptions = {
query: {
// How you want your component to interact with the Apollo cache.
// Defaults to "cache-first".
fetchPolicy: 'no-cache',
// How you want your component to handle network and GraphQL errors.
// Defaults to "none", which means we treat GraphQL errors as runtime errors.
errorPolicy: 'all',
}
};
Example: how to execute graphql query
const Client = require('@gospime/apollo-client');
const plan = 'userSelect';
const args = { id: 2 }; // criteria to find a user
const fields = { fullname, email }; // fields to select
// calling of `query` method
Client
.create(uri, options, apolloOptions)
.query({ plan, args, fields })
.then(result => console.log(result))
.catch(error => console.error(error));
Example: how to execute graphql mutation
const Client = require('@gospime/apollo-client');
const plan = 'userEdit';
const args = { id: 2, fullname: 'new fullname' }; // find user by `id` and update the fullname
// calling of `mutate` method
Client
.create(uri, options, apolloOptions)
.mutate({ plan, args })
.then(result => console.log(result))
.catch(error => console.error(error));
Async/await example:
async () => await Client.create(uri, options, apolloOptions).mutate({ plan, args });
FAQs
Apollo HTTP client with response caching
The npm package @gospime/apollo-client receives a total of 4 weekly downloads. As such, @gospime/apollo-client popularity was classified as not popular.
We found that @gospime/apollo-client 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 supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.