We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f02372 commit 039eb96Copy full SHA for 039eb96
packages/sdk/examples/server/Makefile
@@ -0,0 +1,2 @@
1
+default:
2
+ @node index.mjs
packages/sdk/examples/server/index.mjs
@@ -0,0 +1,10 @@
+import { createBackendClient } from "../../dist/server/server/index.js";
+
3
+const client = createBackendClient({
4
+ environment: "development",
5
+ credentials: {
6
+ clientId: "not-empty",
7
+ clientSecret: "not-empty",
8
+ },
9
+});
10
+console.log("sdk version: " + client.version);
0 commit comments