Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neverendingqs/openssl-self-signed-certificate
Self-signed certificate for development use, generated using openssl.
https://github.com/neverendingqs/openssl-self-signed-certificate
nodejs npm openssl
Last synced: 6 days ago
JSON representation
Self-signed certificate for development use, generated using openssl.
- Host: GitHub
- URL: https://github.com/neverendingqs/openssl-self-signed-certificate
- Owner: neverendingqs
- License: mit
- Created: 2016-07-10T22:14:30.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-30T16:03:19.000Z (almost 8 years ago)
- Last Synced: 2024-05-01T16:05:00.370Z (7 months ago)
- Topics: nodejs, npm, openssl
- Language: JavaScript
- Size: 8.79 KB
- Stars: 15
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![npm version](https://badge.fury.io/js/openssl-self-signed-certificate.svg)](https://badge.fury.io/js/openssl-self-signed-certificate)
# openssl-self-signed-certificate
Self-signed certificate for development use, generated using openssl. Expires in 4754-06-06.
```
$ openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 999999 -nodes
Generating a 2048 bit RSA private key
..............................+++
.....+++
writing new private key to 'key.pem'
-----
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [AU]:.
State or Province Name (full name) [Some-State]:.
Locality Name (eg, city) []:.
Organization Name (eg, company) [Internet Widgits Pty Ltd]:.
Organizational Unit Name (eg, section) []:.
Common Name (e.g. server FQDN or YOUR name) []:localhost
Email Address []:.
```
# Install```
npm install --save-dev openssl-self-signed-certificate
```# Example
```js
var express = require('express');
var app = express();
var port = process.env.PORT || 3000;app.get('/', function(req, res) {
res.send('Hello World!');
});app.listen(port);
console.log(`HTTP started on port ${port}.`);if (process.env.NODE_ENV !== 'production') {
var https = require('https');
var selfSigned = require('openssl-self-signed-certificate');var options = {
key: selfSigned.key,
cert: selfSigned.cert
};https.createServer(options, app).listen(port + 1);
console.log(`HTTPS started on port ${port + 1} (dev only).`);
}
```