
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

grng - Pronounced like "grunge". This is a lightweight, Angular-native GraphQL client designed to seamlessly integrate with Angular 19’s resource API. It provides a minimalistic and efficient way to manage GraphQL queries, mutations, and subscriptions using Angular’s reactivity model. The goal is to reduce boilerplate, enhance developer experience, and ensure optimal performance with Signals and RxJS.
resource Integrationresource(), leveraging Signals for reactivity.queryResource, mutateResource, query$, and mutate$.resource() for automatic reactivity.Observable for flexibility in streaming data.network-only, cache-first, etc.).subResource and sub$ for GraphQL subscriptions.fetch(), HttpClient, or custom transport strategies.npm install grng
resourceimport { queryResource } from 'grng';
import { signal, Injectable } from '@angular/core';
@Injectable({ providedIn: 'root' })
export class UserService {
getUser = queryResource<{ user: User }>(gql`
query GetUser($id: ID!) {
user(id: $id) {
id
name
}
}
`, { id: signal('123') });
}
resourceimport { mutateResource } from 'grng';
@Injectable({ providedIn: 'root' })
export class UserService {
updateUser = mutateResource<{ updateUser: User }>(gql`
mutation UpdateUser($id: ID!, $input: UserInput!) {
updateUser(id: $id, input: $input) {
id
name
}
}
`);
}
Observableimport { query$ } from 'grng';
@Injectable({ providedIn: 'root' })
export class UserService {
getUser$ = query$<{ user: User }>(gql`
query GetUser($id: ID!) {
user(id: $id) {
id
name
}
}
`, { id: '123' });
}
Observableimport { mutate$ } from 'grng';
@Injectable({ providedIn: 'root' })
export class UserService {
updateUser$ = mutate$<{ updateUser: User }>(gql`
mutation UpdateUser($id: ID!, $input: UserInput!) {
updateUser(id: $id, input: $input) {
id
name
}
}
`);
}
We welcome contributions! Feel free to open issues and submit pull requests.
MIT License
FAQs
Lightweight GraphQL client for Angular 19 using resource API.
We found that grng demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.