https://github.com/webpod/webpod
Deploy to your own servers and own cloud ☁️
https://github.com/webpod/webpod
Last synced: 5 days ago
JSON representation
Deploy to your own servers and own cloud ☁️
- Host: GitHub
- URL: https://github.com/webpod/webpod
- Owner: webpod
- License: mit
- Created: 2023-02-15T22:16:38.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-29T09:31:06.000Z (5 months ago)
- Last Synced: 2025-02-09T07:01:35.199Z (12 days ago)
- Language: TypeScript
- Homepage: https://webpod.dev
- Size: 110 KB
- Stars: 305
- Watchers: 4
- Forks: 9
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)