update style
This commit is contained in:
parent
9237da50c0
commit
dd70043ffb
25
README.md
25
README.md
|
@ -1,22 +1,16 @@
|
||||||
acme.js
|
acme.js
|
||||||
==========
|
==========
|
||||||
|
|
||||||
Free SSL for everybody. The bare essentials of the Let's Encrypt v2 (ACME draft 11) API. Built for [Greenlock](https://git.coolaj86.com/coolaj86/greenlock-express.js), [by request](https://git.coolaj86.com/coolaj86/greenlock.js/issues/5#issuecomment-8).
|
Free SSL for everybody. The bare essentials of the Let's Encrypt v2 (ACME draft 11) API.
|
||||||
|
Built for [Greenlock](https://git.coolaj86.com/coolaj86/greenlock-express.js),
|
||||||
!["Monthly Downloads"](https://img.shields.io/npm/dm/acme-v2.svg "Monthly Download Count can't be shown")
|
[by request](https://git.coolaj86.com/coolaj86/greenlock.js/issues/5#issuecomment-8).
|
||||||
!["Weekly Downloads"](https://img.shields.io/npm/dw/acme-v2.svg "Weekly Download Count can't be shown")
|
|
||||||
!["Stackoverflow Questions"](https://img.shields.io/stackexchange/stackoverflow/t/greenlock.svg "S.O. Question count can't be shown")
|
|
||||||
|
|
||||||
| Sponsored by [ppl](https://ppl.family)
|
|
||||||
| **acme.js** ([npm](https://www.npmjs.com/package/acme))
|
|
||||||
| [Greenlock for Web Servers](https://git.coolaj86.com/coolaj86/greenlock-cli.js)
|
|
||||||
| [Greenlock for Express.js](https://git.coolaj86.com/coolaj86/greenlock-express.js)
|
|
||||||
| [Greenlock for API Integrations](https://git.coolaj86.com/coolaj86/greenlock.js)
|
|
||||||
| [Greenlock for Web Browsers](https://git.coolaj86.com/coolaj86/greenlock.html)
|
|
||||||
|
|
|
||||||
|
|
||||||
This is intented for building ACME API clients in node.js.
|
This is intented for building ACME API clients in node.js.
|
||||||
|
|
||||||
|
| Sponsored by [ppl](https://ppl.family) |
|
||||||
|
!["Monthly Downloads"](https://img.shields.io/npm/dm/acme-v2.svg "Monthly Download Count can't be shown")
|
||||||
|
!["Weekly Downloads"](https://img.shields.io/npm/dw/acme-v2.svg "Weekly Download Count can't be shown")
|
||||||
|
|
||||||
Looking for Quick 'n' Easy™?
|
Looking for Quick 'n' Easy™?
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
@ -119,7 +113,7 @@ Patch versions will not introduce breaking changes,
|
||||||
but may introduce lower-level APIs.
|
but may introduce lower-level APIs.
|
||||||
Minor versions may change return values to include more information.
|
Minor versions may change return values to include more information.
|
||||||
|
|
||||||
Overview:
|
### Overview
|
||||||
|
|
||||||
```
|
```
|
||||||
var ACME = require('acme').ACME;
|
var ACME = require('acme').ACME;
|
||||||
|
@ -131,7 +125,8 @@ acme.accounts.create(opts)
|
||||||
acme.certificates.create(opts)
|
acme.certificates.create(opts)
|
||||||
```
|
```
|
||||||
|
|
||||||
Detailed Explanation:
|
### Detailed Explanation
|
||||||
|
|
||||||
```
|
```
|
||||||
var ACME = require('acme').ACME;
|
var ACME = require('acme').ACME;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue