Skip to content

Battery-included GraphQL Server in TypeScript

Notifications You must be signed in to change notification settings

kreteshq/jenova

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jenova

Battery-included GraphQL Server in TypeScript

Jenova is built on top of GraphQL Helix and Envelop. The goal is to provde an easy to easy, battery-included GraphQL server for TypeScript.

Install

npm i jenova-graphql

Usage

import { JenovaServer } from "jenova-graphql";
import { makeExecutableSchema } from "@graphql-tools/schema";

export const schema = makeExecutableSchema({
  typeDefs: /* GraphQL */ `
    type Query {
      hello: String!
    }
  `,
  resolvers: {
    Query: {
      hello: () => 'World',
    },
  },
});

new JenovaServer({ schema }).listen(5000);

About

Battery-included GraphQL Server in TypeScript

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published