Socket
Socket
Sign inDemoInstall

@useful/apollo-server-kubeless

Package Overview
Dependencies
105
Maintainers
4
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @useful/apollo-server-kubeless

Production-ready Node.js GraphQL server for Kubeless


Version published
Maintainers
4
Created

Readme

Source

title: Kubeless description: Setting up Apollo Server with Kubeless

npm version Build Status Coverage Status Get on Slack

This is the Kubeless integration of GraphQL Server. Apollo Server is a community-maintained open-source GraphQL server that works with all Node.js HTTP server frameworks: Express, Connect, Hapi, Koa and Restify. Read the docs. Read the CHANGELOG.

npm install apollo-server-kubeless

Kubeless

import { graphqlKubeless } from 'apollo-server-kubeless';

const myGraphQLSchema = // ... define or import your schema here!

export default graphqlKubeless({ schema: myGraphQLSchema }));

/**
 * OR:
 * export {
 *  nameOfMyKubelessFunction: graphqlKubeless({ schema: myGraphQLSchema }))
 * }
 * /

Principles

GraphQL Server is built with the following principles in mind:

  • By the community, for the community: GraphQL Server's development is driven by the needs of developers
  • Simplicity: by keeping things simple, GraphQL Server is easier to use, easier to contribute to, and more secure
  • Performance: GraphQL Server is well-tested and production-ready - no modifications needed

Anyone is welcome to contribute to GraphQL Server, just read CONTRIBUTING.md, take a look at the roadmap and make your first PR!

Keywords

FAQs

Last updated on 28 May 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc