
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@amoutonbrady/graphql-client
Advanced tools
The most minimal graphql client you'll ever find
Features:
$ npm i @amoutonbrady/graphql-client
import { GraphQLClient, gql } from '@amoutonbrady/graphql-client';
// A function that creates a client
// You can pass a token a second parameter
const client = GraphQLClient('https://jurassic.park/graphql');
const token = getToken();
// You can set a bearer token after wards
client.setAuth(`Bearer ${token}`);
// gql is just a pass through that minify the string for leaner payload
const query = gql`
query getDinosaur($name: String!) {
getDinosaur({ where: { name: $name } }) {
name
height
speed
}
}
`;
// This needs to mimic what you send to the query above
const variables = { name: 'Velociraptor' };
// This will return the `data` property of the graphql response or throw if `errors` is present
client.request(query, variables).then(console.log).catch(console.error);
// => { getDinosaur: { name: 'Velociraptor', height: 150, speed: 70 } }
FAQs
Minimalistic GraphQL client
The npm package @amoutonbrady/graphql-client receives a total of 5 weekly downloads. As such, @amoutonbrady/graphql-client popularity was classified as not popular.
We found that @amoutonbrady/graphql-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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.