Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 ☁️
- Host: GitHub
- URL: https://github.com/webpod/webpod
- Owner: webpod
- License: mit
- Created: 2023-02-15T22:16:38.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-08T02:37:05.000Z (5 months ago)
- Last Synced: 2024-09-19T01:13:30.010Z (about 2 months ago)
- Language: TypeScript
- Homepage: https://webpod.dev
- Size: 101 KB
- Stars: 282
- Watchers: 4
- Forks: 7
- Open Issues: 4
-
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)