You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/react/README.md
+94-3Lines changed: 94 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -13,8 +13,12 @@
13
13
</a>
14
14
</p>
15
15
16
+
KubernetesJS is a **fully-typed**, zero-dependency TypeScript client for Kubernetes.
17
+
18
+
Write infrastructure like you write apps—modular, composable, and testable. KubernetesJS gives you direct, programmatic access to the entire Kubernetes API, with the developer experience of modern JavaScript tooling.
19
+
20
+
> No more brittle YAML. No more hidden chart logic. Just pure, type-safe Kubernetes from the language you already use.
16
21
17
-
KubernetesJS is a **fully-typed**, zero-dependency TypeScript library designed to simplify interactions with Kubernetes APIs. With comprehensive TypeScript support, it provides a strongly-typed interface that makes managing Kubernetes resources clear and predictable, ideal for TypeScript developers looking to integrate Kubernetes management into their applications.
18
22
19
23
## Features
20
24
@@ -23,6 +27,8 @@ KubernetesJS is a **fully-typed**, zero-dependency TypeScript library designed t
23
27
-**📡 Full Kubernetes API Coverage**: Supports all Kubernetes API endpoints with detailed TypeScript types.
24
28
-**🌐 Cross-Platform**: Works with both Node.js and browser environments.
25
29
30
+
With KubernetesJS, you don’t shell out to `kubectl`, grep logs, or decode YAML trees. You write real code—typed, composable, inspectable.
31
+
26
32
## Installation
27
33
28
34
To install KubernetesJS, you can use npm or yarn:
@@ -34,9 +40,94 @@ yarn add kubernetesjs
34
40
35
41
```
36
42
37
-
## Example
43
+
## Your Infrastructure, Like a Component
44
+
45
+
This is what we mean by "*React for infrastructure*":
0 commit comments