A Node.js module for the Hetzner Cloud API
const HetznerCloud = require('hetzner-cloud-js')
let client = new HetznerCloud.Client('API_TOKEN')
const { server } = await client.servers.build('my-awesome-server')
.serverType('cx11')
.location('nbg1')
.image('debian-9')
.sshKey('work')
.create()
- Clone this repo with
git clone https://github.com/boxexchanger/hetzner-cloud-js.git
cd hetzner-cloud-js
- Run
npm install
to install dependencies - Copy
.env.dist
to.env
file and setup your access token. You can use this guide by Hetzner.