Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/webpod/webpod

Deploy to your own servers and own cloud ☁️
https://github.com/webpod/webpod

Last synced: 7 days ago
JSON representation

Deploy to your own servers and own cloud ☁️

Awesome Lists containing this project

README

        

# Webpod

```js
import { ssh } from 'webpod'

const $ = ssh('user@host')

const branch = await $`git branch --show-current`
await $`echo ${branch}`

await $`mkdir /tmp/${'foo bar'}`
```

## Installation

```sh
npm install webpod
```

```sh
deno install -A -r https://deno.land/x/webpod/webpod.ts
```

## Usage

### ssh()

```js
ssh('user@host', {port: 22, options: ['StrictHostKeyChecking=no']})
```

## License

[MIT](LICENSE)