Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
graphql-compiler
Advanced tools
GraphQL-Compiler is a code-generation toolkit for GraphQL. It contains the core functionalities of GraphQL code-gen, including file parsing, validation, syntax tree parsing and transformation. The intended audience are developers wanting to use components of GraphQL-Compiler to build their own GraphQL code-gen pipelines.
The GraphQL-Compiler package exports library code which you may use to find the modules you need, or to extend the compiler with your own custom input and output. Note, the internal APIs of the GraphQL-Compiler are under constant iteration, so rolling your own version may lead to incompatibilities with future releases.
The following graph illustrates the high-level architecture of a complete GraphQL code-generation pipeline:
To understand the underlying workflow of the core compilation step, which is what happens in the "GraphQL Compiler" block in the above graph, please refer HERE.
You can build your own version of the Compiler by adding your own FileWriter
, and by swapping or adding a FileParser
and additional IRTransforms
(IR, which stands for Intermediate Representation
, a special-purpose syntax tree format designed for transformability).
The GraphQL-Compiler package provides a GraphQLFileParser
, which can be used to parse general .graphql
files, and a GraphQLTextParser
, which can be used to parse GraphQL text in any source files with customized tags. You can also write your own FileParser
at your discretion.
You can add additional IRTransforms
by extending the basic GraphQLIRTransforms
. A sample can be found HERE.
Similarly, you can add additional validation rules by extending the basic GraphQLValidator
.
Sample HERE.
A sample FileWriter
can be found HERE.
To actually run your compiler, you will also need a script to assemble all the above components. A sample file can be found HERE.
FAQs
A Code-generation toolkit for GraphQL
The npm package graphql-compiler receives a total of 1,233 weekly downloads. As such, graphql-compiler popularity was classified as popular.
We found that graphql-compiler demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.