| acme-v2.js (npm)
| acme-v2-cli.js
| greenlock.js
| goldilocks.js
A Zero (External) Dependency* library for building
Let's Encrypt v2 (ACME draft 18) clients and getting Free SSL certificates.
The primary goal of this library is to make it easy to
get Accounts and Certificates through Let's Encrypt.
Features
* The only required dependencies were built by us, specifically for this and related libraries.
There are some, truly optional, backwards-compatibility dependencies for node v6.
Looking for Quick 'n' Easy™?
If you want something that's more "batteries included" give
greenlock.js
a try.
v1.7+: Transitional v2 Support
By the end of June 2019 we expect to have completed the migration to Let's Encrypt v2.1 (ACME draft 18).
Although the draft 18 changes themselves don't requiring breaking the API,
we've been keeping backwards compatibility for a long time and the API has become messy.
We're taking this mandatory ACME update as an opportunity to clean up and greatly simplify
the code with a fresh new release.
As of v1.7 we started adding transitional support for the next major version, v2.0 of acme-v2.js.
We've been really good about backwards compatibility for
Recommended Example
Due to the upcoming changes we've removed the old documentation.
Instead we recommend that you take a look at the
Digital Ocean DNS-01 Example
That's not exactly the new API, but it's close.
Let's Encrypt v02 Directory URLs
# Production URL
https://acme-v02.api.letsencrypt.org/directory
# Staging URL
https://acme-staging-v02.api.letsencrypt.org/directory
API
Status: Small, but breaking changes coming in v2
This API is a simple evolution of le-acme-core,
but tries to provide a better mapping to the new draft 11 APIs.
var ACME = require('acme-v2').ACME.create({
userAgent: 'My custom UA String',
getUserAgentString: function(deps) {
return 'My custom UA String';
},
skipChallengeTest: false,
skipDryRun: false,
retryPoll: 8,
retryPending: 4,
retryInterval: 1000,
deauthWait: 10 * 1000
});
ACME.init(acmeDirectoryUrl);
ACME.accounts.create(options);
options = {
email: '<email>',
accountKeypair: {
privateKeyPem: '<ASCII PEM>'
},
agreeToTerms: function(tosUrl) {}
};
ACME.certificates.create(options);
options = {
domainKeypair: {
privateKeyPem: '<ASCII PEM>'
},
accountKeypair: {
privateKeyPem: '<ASCII PEM>'
},
domains: ['example.com'],
getZones: function(opts) {},
setChallenge: function(opts) {},
removeChallenge: function(opts) {}
};
Changelog
- v1.8
- more transitional prepwork for new v2 API
- support newer (simpler) dns-01 and http-01 libraries
- v1.5
- perform full test challenge first (even before nonce)
- v1.3
- Use node RSA keygen by default
- No non-optional external deps!
- v1.2
- fix some API out-of-specness
- doc some magic numbers (status)
- updated deps
- v1.1.0
- reduce dependencies (use lightweight @coolaj86/request instead of request)
- v1.0.5 - cleanup logging
- v1.0.4 - v6- compat use
promisify
from node's util or bluebird - v1.0.3 - documentation cleanup
- v1.0.2
- use
options.contact
to provide raw contact array - made
options.email
optional - file cleanup
- v1.0.1
- Compat API is ready for use
- Eliminate debug logging
- Apr 10, 2018 - tested backwards-compatibility using greenlock.js
- Apr 5, 2018 - export http and dns challenge tests
- Apr 5, 2018 - test http and dns challenges (success and failure)
- Apr 5, 2018 - test subdomains and its wildcard
- Apr 5, 2018 - test two subdomains
- Apr 5, 2018 - test wildcard
- Apr 5, 2018 - completely match api for acme v1 (le-acme-core.js)
- Mar 21, 2018 - mostly matches le-acme-core.js API
- Mar 21, 2018 - can now accept values (not hard coded)
- Mar 20, 2018 - SUCCESS - got a test certificate (hard-coded)
- Mar 20, 2018 - download certificate
- Mar 20, 2018 - poll for status
- Mar 20, 2018 - finalize order (submit csr)
- Mar 20, 2018 - generate domain keypair
- Mar 20, 2018 - respond to challenges
- Mar 16, 2018 - get challenges
- Mar 16, 2018 - new order
- Mar 15, 2018 - create account
- Mar 15, 2018 - generate account keypair
- Mar 15, 2018 - get nonce
- Mar 15, 2018 - get directory
Legal
acme-v2.js |
MPL-2.0 |
Terms of Use |
Privacy Policy