gliderlabs/ssh
GitHub: gliderlabs/ssh
Stars: 4142 | Forks: 499
# gliderlabs/ssh
[](https://godoc.org/github.com/gliderlabs/ssh)
[](https://circleci.com/gh/gliderlabs/ssh)
[](https://goreportcard.com/report/github.com/gliderlabs/ssh)
[](#sponsors)
[](http://slack.gliderlabs.com)
[](https://app.convertkit.com/landing_pages/243312)
This Go package wraps the [crypto/ssh
package](https://godoc.org/golang.org/x/crypto/ssh) with a higher-level API for
building SSH servers. The goal of the API was to make it as simple as using
[net/http](https://golang.org/pkg/net/http/), so the API is very similar:
package main
import (
"github.com/gliderlabs/ssh"
"io"
"log"
)
func main() {
ssh.Handle(func(s ssh.Session) {
io.WriteString(s, "Hello world\n")
})
log.Fatal(ssh.ListenAndServe(":2222", nil))
}
This package was built by [@progrium](https://twitter.com/progrium) after working on nearly a dozen projects at Glider Labs using SSH and collaborating with [@shazow](https://twitter.com/shazow) (known for [ssh-chat](https://github.com/shazow/ssh-chat)).
## Examples
A bunch of great examples are in the `_examples` directory.
## Usage
[See GoDoc reference.](https://godoc.org/github.com/gliderlabs/ssh)
## Roadmap
* Non-session channel handlers
* Cleanup callback API
* 1.0 release
* High-level client?
## License
[BSD](LICENSE)
标签:EVTX分析