@trebired/code-server-kit 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/types.d.ts CHANGED
@@ -1,9 +1,12 @@
1
1
  import type { ChildProcess } from "node:child_process";
2
2
  type CodeServerEntryKind = "node_script" | "executable";
3
3
  type CodeServerLaunchMode = "auto" | "direct" | "node";
4
+ type CodeServerPathAccessMode = "read" | "write";
5
+ type CodeServerProfileItem = "settings.json" | "extensions.json" | "keybindings.json" | "snippets" | "extensions";
4
6
  type CodeServerInstallation = {
5
7
  entryKind: CodeServerEntryKind;
6
8
  entryPoint: string;
9
+ entryRelativePath: string;
7
10
  packageJsonPath: string;
8
11
  packageRoot: string;
9
12
  supportRoot: string | null;
@@ -12,9 +15,17 @@ type CodeServerInstallation = {
12
15
  type ResolveCodeServerInstallationOptions = {
13
16
  resolveFrom?: string;
14
17
  };
15
- type CodeServerLaunchOptions = {
18
+ type CodeServerPathBinding = {
19
+ access: CodeServerPathAccessMode;
20
+ hostPath: string;
21
+ mountPath: string;
22
+ reason: string;
23
+ };
24
+ type CreateCodeServerLaunchPlanOptions = {
16
25
  bindAddr?: string;
26
+ cwd?: string;
17
27
  dataRoot?: string;
28
+ env?: NodeJS.ProcessEnv;
18
29
  extensionsDir?: string;
19
30
  host?: string;
20
31
  installation?: CodeServerInstallation;
@@ -26,20 +37,38 @@ type CodeServerLaunchOptions = {
26
37
  userDataDir?: string;
27
38
  workspacePath?: string;
28
39
  };
40
+ type CodeServerLaunchOptions = CreateCodeServerLaunchPlanOptions;
29
41
  type CodeServerLaunchPlan = {
30
42
  args: string[];
31
43
  bindAddr: string;
32
44
  codeServerPackageRoot: string;
33
45
  command: string;
46
+ cwd: string;
47
+ entryKind: CodeServerEntryKind;
34
48
  entryPoint: string;
49
+ env: NodeJS.ProcessEnv;
35
50
  extensionsDir: string;
36
51
  host: string;
52
+ installation: CodeServerInstallation;
37
53
  launchMode: Exclude<CodeServerLaunchMode, "auto">;
38
54
  port: number;
55
+ recommendedReadablePaths: string[];
56
+ recommendedWritablePaths: string[];
57
+ supportBindings: CodeServerPathBinding[];
39
58
  supportRoot: string | null;
59
+ trustedOrigins: string[];
40
60
  userDataDir: string;
41
61
  workspacePath: string | null;
42
62
  };
63
+ type CodeServerLaunchSpec = {
64
+ args: string[];
65
+ bindings: CodeServerPathBinding[];
66
+ command: string;
67
+ cwd: string;
68
+ env: NodeJS.ProcessEnv;
69
+ readablePaths: string[];
70
+ writablePaths: string[];
71
+ };
43
72
  type CodeServerProcessExit = {
44
73
  code: number | null;
45
74
  signal: NodeJS.Signals | null;
@@ -50,6 +79,8 @@ type CodeServerProcessHandle = {
50
79
  child: ChildProcess;
51
80
  codeServerPackageRoot: string;
52
81
  command: string;
82
+ cwd: string;
83
+ env: NodeJS.ProcessEnv;
53
84
  exit: Promise<CodeServerProcessExit>;
54
85
  extensionsDir: string;
55
86
  getStderr(): string;
@@ -58,15 +89,28 @@ type CodeServerProcessHandle = {
58
89
  kill(signal?: NodeJS.Signals | number): boolean;
59
90
  launchMode: Exclude<CodeServerLaunchMode, "auto">;
60
91
  pid: number | undefined;
92
+ plan: CodeServerLaunchPlan;
61
93
  port: number;
62
94
  supportRoot: string | null;
63
95
  userDataDir: string;
64
96
  workspacePath: string | null;
65
97
  };
98
+ type CodeServerReadyFailure = {
99
+ code?: string;
100
+ details?: Record<string, unknown>;
101
+ message: string;
102
+ };
103
+ type CodeServerReadyFailureProbe = (context: {
104
+ elapsedMs: number;
105
+ host: string;
106
+ port: number;
107
+ process?: CodeServerProcessHandle;
108
+ }) => CodeServerReadyFailure | Error | string | null | undefined | Promise<CodeServerReadyFailure | Error | string | null | undefined>;
66
109
  type CodeServerReadyOptions = {
110
+ failureProbe?: CodeServerReadyFailureProbe;
67
111
  host?: string;
68
- port: number;
69
112
  process?: CodeServerProcessHandle;
113
+ port: number;
70
114
  retryIntervalMs?: number;
71
115
  timeoutMs?: number;
72
116
  };
@@ -82,5 +126,59 @@ type LaunchCodeServerProcessOptions = {
82
126
  stderr?(text: string): void;
83
127
  stdout?(text: string): void;
84
128
  };
85
- export type { CodeServerEntryKind, CodeServerInstallation, CodeServerLaunchMode, CodeServerLaunchOptions, CodeServerLaunchPlan, CodeServerProcessExit, CodeServerProcessHandle, CodeServerReadyOptions, CodeServerReadyResult, LaunchCodeServerProcessOptions, ResolveCodeServerInstallationOptions, };
129
+ type CodeServerProfilePathMap = Record<CodeServerProfileItem, string>;
130
+ type CodeServerProfileEntryKind = "directory" | "file";
131
+ type CodeServerProfileSyncEntry = {
132
+ item: CodeServerProfileItem;
133
+ kind: CodeServerProfileEntryKind;
134
+ relativePath: string;
135
+ sourcePath: string;
136
+ targetPath: string;
137
+ };
138
+ type CreateCodeServerProfileSyncPlanOptions = {
139
+ items?: CodeServerProfileItem[];
140
+ pathMap?: Partial<CodeServerProfilePathMap>;
141
+ sourceDir: string;
142
+ targetDir: string;
143
+ };
144
+ type CodeServerProfileSyncPlan = {
145
+ entries: CodeServerProfileSyncEntry[];
146
+ items: CodeServerProfileItem[];
147
+ sourceDir: string;
148
+ targetDir: string;
149
+ };
150
+ type CodeServerProfileSkipReason = "missing_source" | "unreadable_source";
151
+ type CodeServerProfileSyncResult = {
152
+ copied: CodeServerProfileSyncEntry[];
153
+ skipped: Array<{
154
+ entry: CodeServerProfileSyncEntry;
155
+ reason: CodeServerProfileSkipReason;
156
+ }>;
157
+ };
158
+ type SyncCodeServerProfileOptions = CreateCodeServerProfileSyncPlanOptions & {
159
+ skipMissing?: boolean;
160
+ skipUnreadable?: boolean;
161
+ };
162
+ type BuildForwardedHeadersOptions = {
163
+ forwardedFor?: string | string[];
164
+ forwardedHost?: string;
165
+ forwardedProto?: string;
166
+ host?: string;
167
+ port?: number | string;
168
+ proto?: string;
169
+ };
170
+ type CodeServerHtmlResponseOptions = {
171
+ contentType?: string | null;
172
+ headers?: Headers | Record<string, unknown>;
173
+ method?: string;
174
+ statusCode?: number;
175
+ };
176
+ type NormalizedCodeServerStartupFailure = {
177
+ code: string | null;
178
+ details: Record<string, unknown>;
179
+ isCodeServerKitError: boolean;
180
+ message: string;
181
+ name: string;
182
+ };
183
+ export type { BuildForwardedHeadersOptions, CodeServerEntryKind, CodeServerHtmlResponseOptions, CodeServerInstallation, CodeServerLaunchMode, CodeServerLaunchOptions, CodeServerLaunchPlan, CodeServerLaunchSpec, CodeServerPathAccessMode, CodeServerPathBinding, CodeServerProcessExit, CodeServerProcessHandle, CodeServerProfileEntryKind, CodeServerProfileItem, CodeServerProfilePathMap, CodeServerProfileSkipReason, CodeServerProfileSyncEntry, CodeServerProfileSyncPlan, CodeServerProfileSyncResult, CodeServerReadyFailure, CodeServerReadyFailureProbe, CodeServerReadyOptions, CodeServerReadyResult, CreateCodeServerLaunchPlanOptions, CreateCodeServerProfileSyncPlanOptions, LaunchCodeServerProcessOptions, NormalizedCodeServerStartupFailure, ResolveCodeServerInstallationOptions, SyncCodeServerProfileOptions, };
86
184
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAEvD,KAAK,mBAAmB,GAAG,aAAa,GAAG,YAAY,CAAC;AACxD,KAAK,oBAAoB,GAAG,MAAM,GAAG,QAAQ,GAAG,MAAM,CAAC;AAEvD,KAAK,sBAAsB,GAAG;IAC5B,SAAS,EAAE,mBAAmB,CAAC;IAC/B,UAAU,EAAE,MAAM,CAAC;IACnB,eAAe,EAAE,MAAM,CAAC;IACxB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,KAAK,oCAAoC,GAAG;IAC1C,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,KAAK,uBAAuB,GAAG;IAC7B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,YAAY,CAAC,EAAE,sBAAsB,CAAC;IACtC,UAAU,CAAC,EAAE,oBAAoB,CAAC;IAClC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB,CAAC;AAEF,KAAK,oBAAoB,GAAG;IAC1B,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,qBAAqB,EAAE,MAAM,CAAC;IAC9B,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,OAAO,CAAC,oBAAoB,EAAE,MAAM,CAAC,CAAC;IAClD,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;CAC9B,CAAC;AAEF,KAAK,qBAAqB,GAAG;IAC3B,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC,OAAO,GAAG,IAAI,CAAC;CAC/B,CAAC;AAEF,KAAK,uBAAuB,GAAG;IAC7B,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,YAAY,CAAC;IACpB,qBAAqB,EAAE,MAAM,CAAC;IAC9B,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,OAAO,CAAC,qBAAqB,CAAC,CAAC;IACrC,aAAa,EAAE,MAAM,CAAC;IACtB,SAAS,IAAI,MAAM,CAAC;IACpB,SAAS,IAAI,MAAM,CAAC;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC,OAAO,GAAG,MAAM,GAAG,OAAO,CAAC;IAChD,UAAU,EAAE,OAAO,CAAC,oBAAoB,EAAE,MAAM,CAAC,CAAC;IAClD,GAAG,EAAE,MAAM,GAAG,SAAS,CAAC;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;CAC9B,CAAC;AAEF,KAAK,sBAAsB,GAAG;IAC5B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,uBAAuB,CAAC;IAClC,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,KAAK,qBAAqB,GAAG;IAC3B,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,KAAK,8BAA8B,GAAG;IACpC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,GAAG,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC;IACxB,IAAI,EAAE,oBAAoB,CAAC;IAC3B,MAAM,CAAC,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,MAAM,CAAC,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;CAC7B,CAAC;AAEF,YAAY,EACV,mBAAmB,EACnB,sBAAsB,EACtB,oBAAoB,EACpB,uBAAuB,EACvB,oBAAoB,EACpB,qBAAqB,EACrB,uBAAuB,EACvB,sBAAsB,EACtB,qBAAqB,EACrB,8BAA8B,EAC9B,oCAAoC,GACrC,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trebired/code-server-kit",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Framework-agnostic code-server launch kit for Node.js apps with installation resolution, launch planning, readiness checks, and process helpers.",
5
5
  "license": "MIT",
6
6
  "keywords": [