An open API service indexing awesome lists of open source software.

https://github.com/lupcode/node-lup-acme

Full implementation of the ACME protocol for creating SSL certificates.
https://github.com/lupcode/node-lup-acme

Last synced: 10 months ago
JSON representation

Full implementation of the ACME protocol for creating SSL certificates.

Awesome Lists containing this project

README

          

![GitHub package.json version](https://img.shields.io/github/package-json/v/LupCode/node-lup-acme)
![npm bundle size](https://img.shields.io/bundlephobia/min/lup-acme)
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/LupCode/node-lup-acme/On%20Push)
![NPM](https://img.shields.io/npm/l/lup-acme)

# lup-acme
Full implementation of the ACME protocol for creating SSL certificates.

## Example
```typescript
import { LupACME } from 'lup-acme';

const acme = new LupACME('letsencrypt');

// TODO

```