-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Porting the TS connector to a pure Deno runtime
- Loading branch information
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,6 @@ | |
|
||
# direnv | ||
/.direnv | ||
|
||
# vscode | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
|
||
import {start} from 'https://raw.githubusercontent.com/hasura/ndc-sdk-typescript/main/src/server.ts'; | ||
import {Connector} from 'https://raw.githubusercontent.com/hasura/ndc-sdk-typescript/main/src/connector.ts'; | ||
|
||
console.log('hello world'); | ||
|
||
/** | ||
* TODO: | ||
* | ||
* Create PR | ||
* Share SDK issues with Benoit | ||
* Resolve import errors for Deno (via import map?) for github.com/hasura/ndc-sdk-typescript | ||
* Convert server.ts to connector protocol | ||
* Remove rust harness | ||
* Update docker to leverage deno implementation | ||
* Do start-time inference on functions | ||
* Have schema cache respecting flag --schema: /schema.json - Creates if missing, uses if present | ||
* Manage src locations better | ||
* CMD parsing library | ||
* Subprocess library | ||
* File-reading library | ||
* | ||
*/ |