Gathering detailed insights and metrics for @0no-co/graphql.web
Gathering detailed insights and metrics for @0no-co/graphql.web
Gathering detailed insights and metrics for @0no-co/graphql.web
Gathering detailed insights and metrics for @0no-co/graphql.web
The spec-compliant minimum of client-side GraphQL.
npm install @0no-co/graphql.web
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
85 Stars
64 Commits
2 Forks
5 Watching
12 Branches
5 Contributors
Updated on 12 Nov 2024
TypeScript (85.61%)
JavaScript (14.39%)
Cumulative downloads
Total Downloads
Last day
-8.9%
151,712
Compared to previous day
Last week
-1.4%
878,243
Compared to previous week
Last month
20.9%
3,449,955
Compared to previous month
Last year
236.5%
28,983,399
Compared to previous year
1
33
@0no-co/graphql.web
is a utility library, aiming to provide the minimum of
functions that typical GraphQL clients need and would usually import from
graphql
, e.g. a GraphQL query parser, printer, and visitor.
While its goal isn’t to be an exact match to the GraphQL.js API it aims to remain API- and type-compatible where possible and necessary. However, its goal is to provide the smallest implementation for common GraphQL utilities that are still either spec-compliant or compatible with GraphQL.js’ implementation.
Note: If you’re instead looking for a drop-in replacement for the
graphql
package that you can just alias into your web apps, read more about thegraphql-web-lite
project, which uses this library to shim thegraphql
package.
@urql/core
depends on this package to
power its GraphQL query parsing and printing. If you’re using @urql/core@^4
you’re already using this library! ✨
@0no-co/graphql.web
aims to provide a minimal set of exports to implement
client-side GraphQL utilities, mostly including parsing, printing, and visiting
the GraphQL AST, and the GraphQLError
class.
Currently, graphql.web
compresses to under 4kB and doesn’t regress on
GraphQL.js’ performance when parsing, printing, or visiting the AST.
For all primary APIs we aim to hit 100% test coverage and match the output, types, and API compatibility of GraphQL.js, including — as far as possible — TypeScript type compatibility of the AST types with the currently stable version of GraphQL.js.
Currently, only a select few exports are provided — namely, the ones listed here
are used in @urql/core
, and we expect them to be common in all client-side
GraphQL applications.
Export | Description | Links |
---|---|---|
parse | A tiny (but compliant) GraphQL query language parser. | Source |
print | A (compliant) GraphQL query language printer. | Source |
visit | A recursive reimplementation of GraphQL.js’ visitor. | Source |
Kind | The GraphQL.js’ Kind enum, containing supported ASTNode kinds. | Source |
GraphQLError | GraphQLError stripped of source/location debugging. | Source |
valueFromASTUntyped | Coerces AST values into JS values. | Source |
The stated goals of any reimplementation are:
Therefore, while we can foresee implementing APIs that are entirely separate and
unrelated to the GraphQL.js library in the future, for now the stated goals are
designed to allow this library to be used by GraphQL clients, like
@urql/core
.
No vulnerabilities found.
No security vulnerabilities found.