cert4https
v0.0.2
Published
provide a self signed cert for https
Downloads
4
Readme
cert4https
Installation
$ npm install --save cert4https
Example
var options = require('cert4https');
var https = require('https');
https.createServer(options, function(req, res) {
res.writeHead(200);
res.end('hello world\n');
}).listen(8000);