lighten the load
This commit is contained in:
parent
20de40cd1d
commit
901c8659cf
15
README.md
15
README.md
|
@ -73,6 +73,21 @@ Install
|
|||
npm install --save greenlock-express@2.x
|
||||
```
|
||||
|
||||
Install (optional)
|
||||
-------
|
||||
|
||||
*More efficient* RSA key generation (*optional*):
|
||||
<small>(important for those on ARM devices like Raspberry Pi)</small>
|
||||
```bash
|
||||
npm install --save ursa
|
||||
```
|
||||
|
||||
*Let's Encrypt v01* (pre-draft ACME spec) compatibility (*optional*):
|
||||
<small>(important for those on ARM devices like Raspberry Pi)</small>
|
||||
```bash
|
||||
npm install --save le-acme-core
|
||||
```
|
||||
|
||||
become a `communityMember`
|
||||
==================
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "greenlock-express",
|
||||
"version": "2.1.6",
|
||||
"version": "2.3.0",
|
||||
"description": "Free SSL and managed or automatic HTTPS for node.js with Express, Koa, Connect, Hapi, and all other middleware systems.",
|
||||
"main": "glx.js",
|
||||
"homepage": "https://git.coolaj86.com/coolaj86/greenlock-express.js",
|
||||
|
@ -8,7 +8,7 @@
|
|||
"example": "examples"
|
||||
},
|
||||
"dependencies": {
|
||||
"greenlock": "^2.2.16",
|
||||
"greenlock": "^2.3.0",
|
||||
"le-challenge-fs": "^2.0.8",
|
||||
"le-sni-auto": "^2.1.4",
|
||||
"le-store-certbot": "^2.1.0",
|
||||
|
@ -29,7 +29,7 @@
|
|||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://git.coolaj86.com/coolaj86/greenlock-express.js.git"
|
||||
"url": "https://git.coolaj86.com/coolaj86/greenlock-express.js.git"
|
||||
},
|
||||
"keywords": [
|
||||
"acme",
|
||||
|
|
Loading…
Reference in New Issue