@graphql-sse/server
Advanced tools
Comparing version 0.0.1 to 0.0.2
@@ -6,2 +6,10 @@ # Change Log | ||
## [0.0.2](https://github.com/faboulaws/graphql-sse/compare/@graphql-sse/server@0.0.1...@graphql-sse/server@0.0.2) (2021-09-21) | ||
**Note:** Version bump only for package @graphql-sse/server | ||
## [0.0.1](https://github.com/faboulaws/graphql-sse/compare/@graphql-sse/server@0.0.2...@graphql-sse/server@0.0.1) (2021-09-21) | ||
@@ -8,0 +16,0 @@ |
{ | ||
"name": "@graphql-sse/server", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "GraphQL Subscription over SSE", | ||
@@ -5,0 +5,0 @@ "main": "dist/src/index.js", |
@@ -1,2 +0,2 @@ | ||
# @graph-sse/server | ||
# @graphql-sse/server | ||
@@ -8,3 +8,3 @@ This package provide utility function for implementing GraphQL Subscriptions transport over Server Send Events. This package is inspired by the awesome [GraphQL Helix](https://github.com/contrawork/graphql-helix). | ||
```shell | ||
npm install @graph-sse/server | ||
npm install @graphql-sse/server | ||
``` | ||
@@ -14,3 +14,3 @@ | ||
Here is a simple example of how to use it with express. Alternatively you can use the `@graph-sse/express` package. | ||
Here is a simple example of how to use it with express. Alternatively you can use the `@graphql-sse/express` package. | ||
@@ -22,3 +22,3 @@ ```typescript | ||
processSubscription, | ||
} from "@graph-sse/server"; | ||
} from "@graphql-sse/server"; | ||
import { schema } from "./schema"; | ||
@@ -25,0 +25,0 @@ |
9231