yes we can

This commit is contained in:
AJ ONeal 2015-12-17 09:37:42 +00:00
parent 765293de3f
commit 732c9d4b6f
1 changed files with 8 additions and 8 deletions

View File

@ -2,14 +2,6 @@
Free SSL and Automatic HTTPS for node.js with Express, Connect, and other middleware systems Free SSL and Automatic HTTPS for node.js with Express, Connect, and other middleware systems
## Coming Soon
We're working on it
## In the meantime
See [examples/express-minimal.js](https://github.com/Daplie/node-letsencrypt/blob/master/examples/express-minimal.js)
## Install ## Install
``` ```
@ -35,6 +27,14 @@ app.use('/', function (req, res) {
lex.create(app).listen(); lex.create(app).listen();
``` ```
## < 140 Characters
Let's Encrypt in 128 characters, with spaces!
```
node -e 'require("letsencrypt-express").testing().create( require('express')().use(function (_, r) { r.end("Hi!") }) ).listen()'
```
### Slightly more verbose ### Slightly more verbose
```javascript ```javascript