New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@kubernetes/typescript-node

Package Overview
Dependencies
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kubernetes/typescript-node

NodeJS client for kubernetes-client-typescript

0.1.1
latest
Source
npm
Version published
Weekly downloads
3
-78.57%
Maintainers
2
Weekly downloads
 
Created
Source

typescript client for Kubernetes

Build Status

[Alpha] Typescript client for kubernetes

Needs lots of work...

Installing

Install nodejs

# Typescript modules
sudo npm install -g typescript ts-node

# Required libraries for the client
sudo npm install -g request bluebird js-yaml base-64

Example Code

import config = require('./config');

let k8sApi = config.Config.defaultClient();

k8sApi.listNamespacedPod('default')
    .then((res) => {
        console.log(res.body);
    });

Running via container

$ docker run -v $HOME:/root -it brendanburns/ts-k8s

Running locally

With ts-node

ts-node example.ts

With tsc

tsc example.ts
node example.js

Keywords

kubernetes

FAQs

Package last updated on 25 Jul 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts