From e8c17b6e8f6fdf1780f7eabb223633c48de745f7 Mon Sep 17 00:00:00 2001 From: Colin McDonnell Date: Wed, 6 Sep 2023 08:30:01 -0700 Subject: [PATCH] docs: add installation instructions for bun (#3957) --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 82d485d42b..5e23874914 100644 --- a/README.md +++ b/README.md @@ -23,18 +23,24 @@ through that README and the corresponding tests in parallel. Install GraphQL.js from npm -With npm: +With `npm`: ```sh npm install --save graphql ``` -or using yarn: +With `yarn`: ```sh yarn add graphql ``` +With `bun`: + +```sh +bun add graphql +``` + GraphQL.js provides two important capabilities: building a type schema and serving queries against that type schema.