UNPKG
@root/greenlock
Version:
latest (4.0.5)
next (4.0.0)
4.0.5
4.0.4
4.0.3
4.0.2
4.0.1
4.0.0
3.1.5
3.1.4
3.1.3
3.1.1
3.1.0
3.1.0-wip
3.0.27
3.0.26
3.0.25
3.0.24
3.0.23
3.0.21
3.0.20
3.0.19
3.0.18
3.0.17
3.0.16
3.0.12
3.0.10
3.0.9
3.0.8
3.0.7
3.0.6
3.0.5
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0-wip.0
The easiest Let's Encrypt client for Node.js and Browsers
rootprojects.org/greenlock/
@root/greenlock
/
bin
/
tmpl
/
app.tmpl.js
10 lines
(7 loc)
•
205 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
;
// Here's a vanilla HTTP app to start,
// but feel free to replace it with Express, Koa, etc
var
app =
function
(
req, res
) { res.
end
(
'Hello, Encrypted World!'
); };
module
.
exports
= app;