graphql-jit VS envelop

Compare graphql-jit vs envelop and see what are their differences.

graphql-jit

GraphQL execution using a JIT compiler (by zalando-incubator)

envelop

Envelop is a lightweight library allowing developers to easily develop, share, collaborate and extend their GraphQL execution layer. Envelop is the missing GraphQL plugin system. (by n1ru4l)
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 envelop
10 7
1,026 756
0.5% -
6.7 9.5
about 1 month ago 6 days ago
TypeScript TypeScript
GNU General Public License v3.0 or later MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

graphql-jit

Posts with mentions or reviews of graphql-jit. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-11-15.
  • How much overhead does nodejs graphql have?...
    4 projects | /r/graphql | 15 Nov 2022
    In the end like all performance questions you'll have to measure it. Persisted queries, and even more extreme approaches, like a GraphQL JIT (https://github.com/zalando-incubator/graphql-jit) can remove a lot of the overhead.
  • PSA don't use Datadog agent in a GraphQL project
    3 projects | /r/node | 22 Jul 2022
    We faced something similar. To improve GraphQL performance, we use graphql-jit. We turned off all other tracing that datadog turns on by default. Then, we then wrote a custom tracer to connect graphql-jit to dd-trace. Hopefully this same pattern works for you!
  • Hacker News top posts: May 19, 2022
    2 projects | /r/hackerdigest | 19 May 2022
    GraphQL JIT – GraphQL execution using a JIT compiler\ (0 comments)
  • GraphQL JIT – GraphQL execution using a JIT compiler
    3 projects | news.ycombinator.com | 19 May 2022
    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

  • Manifest v3 in Firefox: Recap and Next Steps
    4 projects | news.ycombinator.com | 18 May 2022
    JS has always been special & excellent because it allows multiphase programming. That one coild just add more code has been unique versus the world of statuc languages, where maybe youcd have some tool to generate stubs for Thrift or gRPC, then compule that in to your program. Which works ok, if and only if you know ahead of time what schemas you might need. Im these cases, you have to give up on stub code & start using more interprtted systems.

    The advantages in js have been colossal, often an easy order of magnitude win to compile selectors & queries & other fast inner loop bits into jit compiled code versus having userland interpretters. Some of thd rete engines enjoy this. Just today there's graphql-jit. https://github.com/zalando-incubator/graphql-jit/blob/main/s...

    Everything you say is full of doubt & scorn & skepticism. I just cant imagine living im such a world where each system had to know fully well ahead of time each type of data it might want to interact with, might have to have that precompiled & baked in. Thatcs a shitty miserable world that looks like the hell JS plucked us out of, by being a flexible, dynamic language that could load in routines & change it's behavior over time. Screw that dark hell world.

  • Introducing Envelop - The GraphQL Plugin System
    12 projects | dev.to | 29 Jul 2021
    By using useParserCache we make sure to parse every unique operation only once. By using useValidationCache we make sure to validate every unique operation only once. By using useGraphQLJit we replace the default execute function with a just-in-time implementation.
  • GraphQL - Diving Deep
    47 projects | dev.to | 29 Jul 2021
    One thing to understand is that, if you are using Node.js graphql-js would typically be the underlying implementation of all libraries and ultimately everything would get converted to JS/TS objects typically an AST ultimately making all these as abstractions on top of the existing way to define schemas. Note that the implementation can differ a bit in other languages or even within Node.js if you are using other ways of implementation like graphql-jit
  • Introducing Envelop: The GraphQL Plugin System
    3 projects | /r/graphql | 22 Jul 2021
    Could you provide more context? the GraphQLJit plugin is a lightweight wrapper around graphql-jit. Could you share your previous datadog/graphql setup? Would love to dig in and find a proper solution!
  • Benzene: Fast, minimal, agnostic GraphQL Libraries
    2 projects | /r/graphql | 28 May 2021
    Customizable runtime. Use custom GraphQL implementation such as graphql-jit or rolling our own for performance and cutting-edge features.

envelop

Posts with mentions or reviews of envelop. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-03-29.
  • Announcing GraphQL Yoga 2.0!
    10 projects | dev.to | 29 Mar 2022
    The Guild took over the development of GraphQL Yoga from Prisma in early 2021, and with the growing community of tools in the GraphQL space, most recently Envelop, we were able to rewrite GraphQL Yoga 2.0 from scratch with easy setup, performance, and developer experience at the core.
  • GraphQL Authentication with Envelop and Auth0
    1 project | dev.to | 20 Dec 2021
    Ideally, you already have your basic envelop setup with your http framework of choice. This guide we will be based on the graphql-helix fastify example, but the code can be easily transferred to any other example as listed on our Integrations and Examples documentation. In case you are hitting any roadblocks feel free to reach out to us via the chat box on this page! The full code of the end-result is also available in our examples graphql-helix-auth0 fastify example.
  • Introducing Envelop - The GraphQL Plugin System
    12 projects | dev.to | 29 Jul 2021
    Make “hard” GraphQL capabilities easy by installing powerful plugins (Caching, Tracing with Prometheus/DataDog/NewRelic/Sentry/OpenTelemetry/ApolloTracing, Loggers, GraphQL-Jit, Persisted Operations, Security with rate-limit/depth-limit/Auth0 and many others from the Plugins Hub)
  • Introducing Envelop: The GraphQL Plugin System
    3 projects | /r/graphql | 22 Jul 2021
    I started reimplementing the logic from GitHub over here https://github.com/dotansimha/envelop/pull/474
  • Prevent clients from accessing certain resolvers on Apollo server with Prisma
    1 project | /r/graphql | 30 Jun 2021
    We just today published a new plugin for envelop (GraphQL execution flow customization layer) that allow rejecting GraphQL operations before being executed based on the selection set of the operation. It is pretty flexible and you can limit the access dynamically based on the GraphQL context. E.g. this allows loading the permission information from the database, the user record, or any other remote service. https://github.com/dotansimha/envelop/tree/main/packages/plugins/operation-field-permissions
  • What's the best way to input union types?
    1 project | /r/graphql | 16 May 2021
    We are already having a spec compatible implementation available that you can start using with envelop, without havign to wait for official graphql-js support to land: https://github.com/dotansimha/envelop/pull/179

What are some alternatives?

When comparing graphql-jit and envelop you can also consider the following projects:

apollo-server - 🌍  Spec-compliant and production ready JavaScript GraphQL server that lets you develop in a schema-first way. Built for Express, Connect, Hapi, Koa, and more.

nestjs-graphql - GraphQL (TypeScript) module for Nest framework (node.js) 🍷

graphql-helix - A highly evolved GraphQL HTTP Server 🧬

TypeGraphQL - Create GraphQL schema and resolvers with TypeScript, using classes and decorators!

graphql-public-schema-filter - Filter your GraphQL graph into a subgraph. Code-first & SDL-first!

graphql-js - A reference implementation of GraphQL for JavaScript

redwood - The App Framework for Startups

webextensions - Charter and administrivia for the WebExtensions Community Group (WECG)

graphql-hive - GraphQL Hive is a schema registry and observability