graphql-jit

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

Graphql-jit Alternatives

Similar projects and alternatives to graphql-jit

  1. Visual Studio Code

    Visual Studio Code

  2. SurveyJS

    JavaScript Form Builder with No-Code UI & Built-In JSON Schema Editor. Add the SurveyJS white-label form builder to your JavaScript app (React/Angular/Vue3). Build complex JSON forms without coding. Fully customizable, works with any backend, perfect for data-heavy apps. Learn more.

    SurveyJS logo
  3. uBlock

    3,022 graphql-jit VS uBlock

    uBlock Origin - An efficient blocker for Chromium and Firefox. Fast and lean.

  4. Express

    780 graphql-jit VS Express

    Fast, unopinionated, minimalist web framework for node.

  5. Gatsby

    372 graphql-jit VS Gatsby

    The best React-based framework with performance, scalability and security built in.

  6. crystal

    247 graphql-jit VS crystal

    The Crystal Programming Language

  7. Hoppscotch

    237 graphql-jit VS Hoppscotch

    Open source API development ecosystem.

  8. Hasura

    234 graphql-jit VS Hasura

    Blazing fast, instant realtime GraphQL APIs on all your data with fine grained access control, also trigger webhooks on database events.

  9. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  10. jaeger

    CNCF Jaeger, a Distributed Tracing Platform

  11. apollo-server

    74 graphql-jit VS 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.

  12. slonik

    74 graphql-jit VS slonik

    A Node.js PostgreSQL client with runtime and build time type safety, and composable SQL.

  13. Neo4j

    59 graphql-jit VS Neo4j

    Graphs for Everyone

  14. webextensions

    Charter and administrivia for the WebExtensions Community Group (WECG)

  15. graphql-spec

    GraphQL is a query language and execution engine tied to any backend service.

  16. TypeGraphQL

    32 graphql-jit VS TypeGraphQL

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

  17. graphql-js

    27 graphql-jit VS graphql-js

    A reference implementation of GraphQL for JavaScript

  18. graphql-helix

    Discontinued A highly evolved GraphQL HTTP Server 🧬

  19. express-graphql

    Discontinued Create a GraphQL HTTP server with Express.

  20. envelop

    7 graphql-jit VS 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.

  21. apollo-ios

    📱  A strongly-typed, caching GraphQL client for iOS, written in Swift.

  22. node-graphql-benchmarks

    Benchmarks for different Node.js GraphQL Servers

  23. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better graphql-jit alternative or higher similarity.

graphql-jit discussion

Log in or Post with

graphql-jit reviews and mentions

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.
  • A note from our sponsor - SurveyJS
    surveyjs.io | 19 May 2025
    Add the SurveyJS white-label form builder to your JavaScript app (React/Angular/Vue3). Build complex JSON forms without coding. Fully customizable, works with any backend, perfect for data-heavy apps. Learn more. Learn more →

Stats

Basic graphql-jit repo stats
10
1,067
7.0
6 months ago

Sponsored
JavaScript Form Builder with No-Code UI & Built-In JSON Schema Editor
Add the SurveyJS white-label form builder to your JavaScript app (React/Angular/Vue3). Build complex JSON forms without coding. Fully customizable, works with any backend, perfect for data-heavy apps. Learn more.
surveyjs.io

Did you know that TypeScript is
the 1st most popular programming language
based on number of references?