GraphQL JIT – GraphQL execution using a JIT compiler

This page summarizes the projects mentioned and recommended in the original post on news.ycombinator.com

Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • graphql-jit

    GraphQL execution using a JIT compiler

  • https://github.com/zalando-incubator/graphql-jit#compile-a-q...

    so I guess the difference is instead of having totally generic functions that parse the query every time, instead you can call a factory function up front to get a specialised function for a particular query

    and V8 JIT can make that faster

  • node-graphql-benchmarks

    Benchmarks for different Node.js GraphQL Servers

  • I remember seeing graphql-jit on a comparative benchmark of GQL server implementations, and it blowing everything out of the water, really impressive:

    https://github.com/benawad/node-graphql-benchmarks

    Depending on your usecase, you can go one level further and directly evaluate the query AST without delegating to resolvers.

    (This generally only makes sense if you do programmatic schema generation. IE, read some metadata about a source and then generate GQL types/operations from it.)

    So a query comes in, say something like:

        query {

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

    SurveyJS logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts