百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
< 返回工具列表
P

pico

> 编程语言
开源

为开发人员提供的终极 ssh 服务

1.3K stars0 点赞0 次浏览
访问官网GitHub

工具介绍

为开发人员提供的终极 ssh 服务

pico.sh

The ultimate ssh powered services for developers

[!IMPORTANT]
Read our docs at pico.sh.

Open source and managed web services leveraging ssh.

The secret ingredient to all our services is how we let users publish content without needing to install anything. We accomplish this with the ssh tools you already have installed on your system.

Want to publish a blog post? Use rsync, scp, or sftp. Want to publish a website? Use rsync, scp, or sftp. Want to share a code snippet with a colleague? Use rsync, scp, or sftp. Hopefully you see the trend.

  • pages: A static site hosting platform using ssh for site deployments. ssh.
  • tuns: https/wss/tcp tunnels to localhost using only
  • pipe: Authenticated *nix pipes over ssh
  • prose: A blog platform using ssh for content management.
  • rss-to-email: An RSS email notification service using ssh.
  • pastes: Upload code snippets using rsync, scp, and sftp.

Deploy a site with a single command

Upload your static site to us:

bash
rsync -rv ./public/ pgs.sh:/mysite/

Now your site is available with TLS handled for you: https://{user}-mysite.pgs.sh We also automatically handle TLS for your custom domains!

Access localhost using https

If you have a local webserver on localhost:8000, activate an ssh tunnel to us:

bash
ssh -R dev:80:localhost:8000 tuns.sh

Now your local dev server is availble on the web: https://dev.tuns.sh

Authenticated *nix pipes over ssh

Have one terminal listen for an event and another terminal send the event:

bash
# term 1
ssh pipe.pico.sh sub mytopic
# term 2
echo "Hello world!" | ssh pipe.pico.sh pub mytopic

The sub will receive "Hello world!"

Publish blog articles with a single command

Create your first post, (e.g. hello-world.md):

markdown
# hello world!

This is my first blog post.

Cya!

Upload the post to us:

bash
scp hello-world.md prose.sh:/

Congrats! You just published a blog article, accessible here: https://{user}.prose.sh/hello-world

Easily share code snippets

Pipe some stdout to us:

bash
git diff | ssh pastes.sh changes.patch

And instantly share your code snippets: https://{user}.pastes.sh/changes.patch

Receive email notifications for your favorite rss feeds

Create a blogs.txt file:

=: email [email protected]
=: cron 0 13 * * *
https://blog.pico.sh/rss
https://bower.sh/rss

Then upload it to us:

bash
scp blogs.txt feeds.pico.sh:/

After the daily interval has been reached, you will receive an email with your feeds!

Ready to join?

https://pico.sh/getting-started

Issues· 0 开放

查看全部 Issues在 GitHub 打开

暂无开放 Issues,或尚未同步最近议题。

> 标签

Go

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月17日
分类编程语言
定价开源

> 相关工具

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言