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

@jaymun723/apollo-server-vercel

v0.6.1

Published

Production-ready Node.js GraphQL server for Vercel Serverless Functions (temporary package).

Downloads

3

Readme

This is a fork of https://github.com/tomouchuu/apollo-server-vercel/tree/fix-cors-requests. This is temporary, I'm waiting for this PR to merge. Temporary npm package with cors fixed and newer version of graphql-upload downloadable here: npm i @jaymun723/apollo-server-vercel.


Note: These docs are subject to change, as this library is under construction. Expect things to be broken!

📦 Installation

In an existing application deployable to Vercel (such as create-next-app), add the following to your project's dependencies:

npm install --save @saeris/apollo-server-vercel graphql
# or
yarn add @saeris/apollo-server-vercel graphql

Only clone this repository if you intend to contribute to the development of this library! Please read the Contributing section below for more details.

🔧 Usage

Please read Vercel's documentation on how to deploy a serverless function or if you are using Nextjs, follow their guide on adding API routes. Also note that this library is intended only for use with Vercel's hosting platform. If you intend to deploy a Nextjs app to a different platform, such as Netlify, you will need to use Apollo Server Lambda instead. The API of this library is identical to apollo-server-lambda and as such, switching between the two is as simple as swapping out dependencies and placing your endpoint handler in the appropriate directory.

// Create a new API endpoint handler in the appropriate directory for your project:
// Vercel: ./api/<endpoint-name>.{js|ts}
// Nextjs: ./pages/api/<endpoint-name>.{js|ts} or ./src/pages/api/<endpoint-name>.{js|ts}

import { ApolloServer } from "@saeris/apollo-server-vercel";

// Construct a schema, using GraphQL schema language
const typeDefs = `
  type Query {
    hello: String
  }
`;

// Provide resolver functions for your schema fields
const resolvers = {
  Query: {
    hello: () => "Hello world!"
  }
};

const server = new ApolloServer({
  typeDefs,
  resolvers,

  // By default, the GraphQL Playground interface and GraphQL introspection
  // is disabled in "production" (i.e. when `process.env.NODE_ENV` is `production`).
  //
  // If you'd like to have GraphQL Playground and introspection enabled in production,
  // the `playground` and `introspection` options must be set explicitly to `true`.
  playground: true,
  introspection: true
});

export default server.createHandler();

// You should now be able to access your new endpoint from via::
// http://localhost:3000/api/<endpoint-name>

🕹️ Demo

The example under api/example.ts is live at https://apollo-server-vercel.saeris.io/api/example. You can also give it a try via CodeSandbox or locally by cloning this repo, running yarn && yarn start, and then navigate to the URL provided in your terminal (usually http://localhost:3000/api/example).


🏗️ Contributing

If you would like to contribute to the development of this library, feel free to open a pull request! Getting started should be as easy as running git clone https://github.com/Saeris/apollo-server-vercel.git and then npm install or yarn to install dependencies. Please make sure you run yarn test after making any changes to ensure that all of the integration tests pass before submitting your PR.

⚠️ At this time only bug fixes will be accepted!

🧪 Testing

Testing is provided via jest and is pre-configured to run with codecov as well. Tests for this library have been adapted from the official Apollo Server integration tests and they can be found under src/__test__. Additionally, this library uses eslint, typescript, and prettier, all three of which are automatically run on each commit via husky + lint-staged. To manually lint and test, use the following commands:

Lint:

yarn lint

Typecheck:

yarn typecheck

Test and watch for changes:

yarn test:watch

Lint + Typecheck + Test:

yarn test

📣 Acknowledgements

This library is based on apollo-server-lambda and uses integration tests copied from that library as well as apollo-server-integration-testsuite. Huge thanks to all the folks at Apollo for their amazing work!

🥂 License

Released under the MIT license.