npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

devcert-with-localhost

v0.3.3

Published

Generate trusted local SSL/TLS certificates for local SSL development

Downloads

47

Readme

devcert - Development SSL made easy

So, running a local HTTPS server usually sucks. There's a range of approaches, each with their own tradeoff. The common one, using self-signed certificates, means having to ignore scary browser warnings for each project.

devcert makes the process easy. Want a private key and certificate file to use with your server? Just ask:

import * as https from 'https';
import * as express from 'express';
import getDevelopmentCertificate from 'devcert';

let app = express();

app.get('/', function (req, res) {
  res.send('Hello Secure World!');
});

getDevelopmentCertificate('my-app', { installCertutil: true }).then((ssl) => {
  https.createServer(ssl, app).listen(3000);
});

Now open https://localhost:3000 and voila - your page loads with no scary warnings or hoops to jump through.

Certificates are cached by name, so two calls for getDevelopmentCertificate('foo') will return the same key and certificate.

installCertutil option

devcert currently takes a single option: installCertutil. If true, devcert will attempt to install some software necessary to tell Firefox (and Chrome, only on Linux) to trust your development certificates. This is not required, but without it, you'll need to tell Firefox to trust these certificates manually.

Thankully, Firefox makes this easy. There's a point-and-click wizard for importing and trusting a certificate, so if you don't provide installCertutil: true to devcert, devcert will instead automatically open Firefox and kick off this wizard for you. Simply follow the prompts to trust the certificate. Reminder: you'll only need to do this once per machine

Note: Chrome on Linux requires installCertutil: true, or else you'll face the scary browser warnings every time. Unfortunately, there's no way to tell Chrome on Linux to trust a certificate without install certutil.

The software installed varies by OS:

  • Mac: brew install nss
  • Linux: apt install libnss3-tools
  • Windows: N/A

How it works

When you ask for a development certificate, devcert will first check to see if it has run on this machine before. If not, it will create a root certificate authority and add it to your OS and various browser trust stores. You'll likely see password prompts from your OS at this point to authorize the new root CA. This is the only time you'll see these prompts.

This root certificate authority allows devcert to create a new SSL certificate whenever you want without needing to ask for elevated permissions again. It also ensures that browsers won't show scary warnings about untrusted certificates, since your OS and browsers will now trust devcert's certificates. The root CA certificate is unique to your machine only, and is generated on-the-fly when it is first installed.

Once devcert is sure that it has a root certificate authority installed, it will create a new SSL certificate & key pair for your app, signed by this root certificate authority. Since your browser & OS now trust the root authority, they'll trust the certificate for your app - no more scary warnings!

License

MIT © Dave Wasmer