
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@scaleway/sdk-k8s
Advanced tools
Scaleway SDK for K8S API.
Note
This is an automatically generated package that is part of the Scaleway SDK for JavaScript.
npm install @scaleway/sdk-k8s @scaleway/sdk-client
or with pnpm:
pnpm add @scaleway/sdk-k8s @scaleway/sdk-client
or with yarn:
yarn add @scaleway/sdk-k8s @scaleway/sdk-client
You'll need a pair of access and secret keys to connect to Scaleway API. Please check the documentation on how to retrieve them.
import { createClient } from '@scaleway/sdk-client'
import { K8S } from '@scaleway/sdk-k8s'
const client = createClient({
accessKey: 'SCWXXXXXXXXXXXXXXXXX',
secretKey: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx',
defaultProjectId: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx',
defaultRegion: 'fr-par',
defaultZone: 'fr-par-1',
})
const api = new K8S.v1.API(client)
// Use the API
// Example: await api.listServers()
For a simpler setup, you can load credentials from the configuration file or environment variables:
import { createClient } from '@scaleway/sdk-client'
import { loadProfileFromConfigurationFile } from '@scaleway/configuration-loader'
import { K8S } from '@scaleway/sdk-k8s'
const profile = loadProfileFromConfigurationFile()
const client = createClient(profile)
const api = new K8S.v1.API(client)
We love feedback! Feel free to reach us on:
This repository is at its early stage and is still in active development. If you are looking for a way to contribute, please read CONTRIBUTING.md.
This project is Apache 2.0 licensed. See the LICENSE file for details.
FAQs
Scaleway SDK k8s
The npm package @scaleway/sdk-k8s receives a total of 5,720 weekly downloads. As such, @scaleway/sdk-k8s popularity was classified as popular.
We found that @scaleway/sdk-k8s demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?

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.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.