Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/josudoey/cert4https

provide a self signed cert for https
https://github.com/josudoey/cert4https

Last synced: about 1 month ago
JSON representation

provide a self signed cert for https

Awesome Lists containing this project

README

        

# cert4https

## Installation

```bash
$ npm install --save cert4https
```

## Example

```js
var options = require('cert4https');
var https = require('https');
https.createServer(options, function(req, res) {
res.writeHead(200);
res.end('hello world\n');
}).listen(8000);
```