Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/josudoey/cert4https
- Owner: josudoey
- Created: 2017-02-09T13:45:11.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2021-03-03T14:14:43.000Z (almost 4 years ago)
- Last Synced: 2024-11-24T22:02:56.897Z (about 2 months ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
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);
```