npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

graphql-jerky

v1.0.7

Published

Jerky is a schema-first static graphql schema lightweight code generator.

Downloads

18

Readme

Jerky

Jerky is a schema-first static graphql schema lightweight code generator.

The benefit of such a tool is to remove the requirement of parsing the graphql schema at runtime while still employing a schema-first development experience. This is useful for reducing startup or cold start times which is important for environments where potentially many short-lived instances are spawned in quick succession such as on serverless platforms.

In addition to runtime benefits, scalar, resolve, and subscribe functions are automatically linked in the schema, and typescript Types are automatically generated based on the schema definition.

Jerky is made to interoperate with the reference graphql-js library and is not a standalone GraphQL implementation.

Usage

npx graphql-jerky

OR

deno run -A src/command/jerky.ts

By default, the working directory is searched recursively for *.graphql files. All of which are combined into a single schema and rendered to schema_gen.ts in the same directory.

A path to a directory or file can be passed as the first parameter to limit to scope of the search.

Options

--graphql

The --graphql option specifies the module from which the graphql types will be imported. Defaults to graphql.

This is sometimes necessary depending on your target platform or runtime. In particular, a node project would probably graphql from npm, where as a deno project may use npm:graphql instead.

--scalars

The --scalars option specifies the module from which scalar functions are imported.

This is used to specify the serialize, parseValue, and parseLiteral functions that are configure GraphQLScalarTypes.

For example, if a custom scalar is defined like this:

scalar Date

The corresponding scalars file could look like this:

export const Date = {
  serialize(value: Date): string {
    return value.toISOString();
  },
  parseValue(value: unknown): Date {
    if (typeof value !== "string") {
      throw new Error("Date must be a string");
    }

    return new globalThis.Date(value);
  },
};

--resolvers

The --resolvers option specifies a directory of modules from which resolver functions are imported.

Object and interface types defined in the schema are correlated to a file in the specified directory by name. Within each file, fields of the corresponding type are also correlated to the exports by name.

Each export must be a function in the form of GraphQLFieldResolver.

For example, if a schema is defined like this:

type Query {
  show(id: ID!): Show
}

type Show {
  name: String!
}

The corresponding resolvers directory could look like this:

// path/to/resolvers/Query.ts

import { Query } from "path/to/schema_gen.ts";
import { data, Show } from "path/to/data.ts";

export function show(source: null, { id }: Query.ShowArgs): Show {
  return data.shows[id];
}
// path/to/resolvers/Show.ts

import { Show } from "path/to/data.ts";

export function name(source: Show): string {
  return source.show_name;
}

Alternatively to a single file containing all field resolvers, for large types like Query or Mutation, it may be preferrable to break split of field resolvers into separate files within a subdirectory of the same name as the corresponding type for better organization.

For example, if a schema is defined like this:

type Query {
  show(id: ID!): Show
  actor(id: ID!): Actor
}

The Query resolvers may be split up into files like this:

// path/to/resolvers/Query/shows.ts

import { Query } from "path/to/schema_gen.ts";
import { data, Show } from "path/to/data.ts";

export function show(source: null, { id }: Query.ShowArgs): Show {
  return data.shows[id];
}
// path/to/resolvers/Query/actors.ts

import { Query } from "path/to/schema_gen.ts";
import { Actor, data } from "path/to/data.ts";

export function actors(source: null, { id }: Query.ActorArgs): Actor {
  return data.actors[id];
}

--subscribers

The --subscribers option specifies the module from which subscribe functions are imported. This works in the same way as any particular type from the --resolvers option, except it is for the Subscription type only.

--field-directives

The --field-directives option specifies the module from which field directive functions are imported.

Field directive functions work like middleware for field resolvers. They receive a field resolver function and return a field resolver function. The function that is returned may be a completely new function, or same function that was passed in as the parameter. They are invoked once on start, and never again.

For example, a field directive that ensures that only authorized users may access a field may look like this:

directive @secure(level: Int!) on FIELD_DEFINITION

type Mutation {
  secrets(): String @secure(level: 9001)
}
export function secure(next: GraphQLFieldResolver<any, any>, { level }: SecureDirectiveArgs): GraphQLFieldResolver<any, any> {
  return (src: any, args: any, ctx: any, info: GraphQLResolveInfo) => {
    if (!ctx.authorization) {
      throw new GraphQLError("unauthorized");
    }

    if (level > ctx.authorization.level) {
      throw new GraphQLError(`authorization level ${level} is required`);
    }

    // src, args, ctx can be mutated here before being passed to the next resolver

    return next(src, args, ctx, info);
  }
}

--input-directives

The --input-directives option specifies the module from which input and argument directive functions are imported.

Input and argument directive functions work like transforms. They receive a value, do some processing with it, and return a value to be used in place of the original value. They are invoked every time such a value is received.

For example, an input directive that requires a value to be an email address may look like this:

directive @email on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION

type Mutation {
  sendMessage(to: String! @email): String
}
export function email(s: string, {}: EmailDirectiveArgs): string {
  if (!s.includes("@")) {
    throw new Error("must be a valid email");
  }

  return s;
}

Goals

  • Generate runtime-agnostic code
  • Interoperate with graphql-js
  • Be easily configurable for any target environment
  • Keep the graphql-js version of Jerky independent of that of the target environment
  • Expose APIs for custom integrations

Non-Goals

  • Teaching GraphQL concepts or ideas
  • Extending GraphQL with custom features
  • Overthrowing the Galactic Federation