Skip to content

Commit 54fdb10

Browse files
chore: render servers table in readme (#46)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent c99829e commit 54fdb10

File tree

14 files changed

+91
-9
lines changed

14 files changed

+91
-9
lines changed

.github/workflows/audits.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,8 @@ jobs:
159159
uses: actions/download-artifact@v3
160160
with:
161161
name: audit-reports
162+
- name: Render servers table
163+
run: node scripts/render-servers-table.mjs
162164
- name: Diff
163165
run: git diff --minimal
164166
- name: Commit

README.md

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -744,15 +744,21 @@ Having said this, graphql-http is mostly aimed for library authors and simple se
744744

745745
If you want a feature-full server with bleeding edge technologies, you're recommended to use one of the following.
746746

747-
| Name | Audit |
748-
| ------------------------------------------------------------------ | -------------------------------------------------------- |
749-
| [graphql-yoga](https://www.the-guild.dev/graphql/yoga-server) | [✅ Compliant](/implementations/graphql-yoga/README.md) |
750-
| [graphql-helix](https://www.graphql-helix.com/) | [✅ Compliant](/implementations/graphql-helix/README.md) |
751-
| [hotchocolate](https://chillicream.com/docs/hotchocolate) | [✅ Compliant](/implementations/hotchocolate/README.md) |
752-
| [pioneer](https://pioneer.dexclaimation.com/) | [✅ Compliant](/implementations/pioneer/README.md) |
753-
| [postgraphile](https://www.graphile.org/postgraphile/) | [✅ Compliant](/implementations/postgraphile/README.md) |
754-
| [apollo-server](https://www.apollographql.com/docs/apollo-server/) | [✅ Compliant](/implementations/apollo-server/README.md) |
755-
| [deno](https://deno.com/blog/build-a-graphql-server-with-deno) | [✅ Compliant](/implementations/deno/README.md) |
747+
<!-- <ServersTable> -->
748+
<!-- prettier-ignore-start -->
749+
| Name | Audit |
750+
|------|-------|
751+
| [apollo-server](https://www.apollographql.com/docs/apollo-server) | [✅ Compliant](/implementations/apollo-server/README.md) |
752+
| [deno](https://deno.com/blog/build-a-graphql-server-with-deno) | [✅ Compliant](/implementations/deno/README.md) |
753+
| [graph-client](https://github.com/graphprotocol/graph-client) | [✅ Compliant](/implementations/graph-client/README.md) |
754+
| [graphql-helix](https://www.graphql-helix.com) | [✅ Compliant](/implementations/graphql-helix/README.md) |
755+
| [graphql-yoga](https://www.the-guild.dev/graphql/yoga-server) | [✅ Compliant](/implementations/graphql-yoga/README.md) |
756+
| [hotchocolate](https://chillicream.com/docs/hotchocolate) | [✅ Compliant](/implementations/hotchocolate/README.md) |
757+
| [pioneer](https://pioneer.dexclaimation.com) | [✅ Compliant](/implementations/pioneer/README.md) |
758+
| [postgraphile](https://www.graphile.org/postgraphile) | [✅ Compliant](/implementations/postgraphile/README.md) |
759+
<!-- prettier-ignore-end -->
760+
761+
<!-- </ServersTable> -->
756762

757763
## [Documentation](docs/)
758764

implementations/apollo-server/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"private": true,
33
"name": "apollo-server",
4+
"url": "https://www.apollographql.com/docs/apollo-server",
45
"packageManager": "[email protected]",
56
"main": "index.mjs",
67
"scripts": {

implementations/deno/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"private": true,
33
"name": "deno",
4+
"url": "https://deno.com/blog/build-a-graphql-server-with-deno",
45
"packageManager": "[email protected]",
56
"scripts": {
67
"start": "docker compose up"

implementations/express-graphql/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"private": true,
33
"name": "express-graphql",
4+
"url": "https://github.com/graphql/express-graphql",
45
"packageManager": "[email protected]",
56
"main": "index.mjs",
67
"scripts": {

implementations/graph-client/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"private": true,
33
"name": "graph-client",
4+
"url": "https://github.com/graphprotocol/graph-client",
45
"packageManager": "[email protected]",
56
"main": "index.mjs",
67
"scripts": {

implementations/graphql-helix/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"private": true,
33
"name": "graphql-helix",
4+
"url": "https://www.graphql-helix.com",
45
"packageManager": "[email protected]",
56
"main": "index.mjs",
67
"scripts": {

implementations/graphql-yoga/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"private": true,
33
"name": "graphql-yoga",
4+
"url": "https://www.the-guild.dev/graphql/yoga-server",
45
"packageManager": "[email protected]",
56
"main": "index.mjs",
67
"scripts": {

implementations/hotchocolate/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"private": true,
33
"name": "hotchocolate",
4+
"url": "https://chillicream.com/docs/hotchocolate",
45
"packageManager": "[email protected]",
56
"scripts": {
67
"start": "docker compose up"

implementations/mercurius/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"private": true,
33
"name": "mercurius",
4+
"url": "https://mercurius.dev",
45
"packageManager": "[email protected]",
56
"main": "index.mjs",
67
"scripts": {

0 commit comments

Comments
 (0)