# simple-kubernetes-client

> A simple kubernetes client

Latest version **1.0.2** (published 2023-06-24) · ISC license · 0 weekly downloads

## Install

```sh
npm install simple-kubernetes-client
pnpm add simple-kubernetes-client
yarn add simple-kubernetes-client
bun add simple-kubernetes-client
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2023-06-24 |
| First published | 2023-05-21 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 33.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Srinjoy Choudhury |
| Maintainers | srinchow |
| Keywords | Kubernetes |

## Links

- npm: https://www.npmjs.com/package/simple-kubernetes-client
- Repository: https://github.com/srinchow/KubernetesClient
- Homepage: https://github.com/srinchow/KubernetesClient#readme
- Issues: https://github.com/srinchow/KubernetesClient/issues
- npm.io page: https://npm.io/package/simple-kubernetes-client

## Dependencies (1)

- [@kubernetes/client-node](https://npm.io/package/@kubernetes/client-node.md) ^0.16.3

## Recent versions

- 1.0.2 (latest) — 2023-06-24
- 1.0.1 — 2023-05-21
- 1.0.0 — 2023-05-21

## README

# simple-k8-client
[![Node.js CI](https://github.com/srinchow/kubernetesClient/actions/workflows/node.yml/badge.svg)](https://github.com/srinchow/kubernetesClient/actions/workflows/node.yml)

A simple and easy to use Kubernetes Client for Nodejs , the available k8 client
by kubernetes is great but for simple/common use-cases it is very unintuitive as
it expects you to pass a bunch of empty params which could confuse a lot of
users who are not looking to learn these

simple-k8-client is a very lightweight client which makes the k8 functions much
easier to use for simple/common usecases

Minimalist Kubernetes framework for [Node.js](http://nodejs.org).

Examples:

```js
const { pod } = require("simple-kubernetes-client");

const doSomething = async ()=> {
    const helloWorldPod = await pod.getPod("hello-world");
    console.log(helloWorldPod)
}
```

Test : <br> Coverage is still not 100% will add more unit test, yet to write
integration test

```
npm run test
```

Future addition:

1. Cursor addition to fetch data via scroll
2. More Functions

---
_Source: https://npm.io/package/simple-kubernetes-client · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
