
Security News
npm v12 Ships With Install Scripts Off by Default, Begins Deprecating 2FA-Bypass Tokens
npm v12 is generally available, turning install scripts off by default and beginning the deprecation of 2FA-bypass publishing tokens.
devcert-sanscache
Advanced tools
Generate trusted local SSL/TLS certificates for local SSL development
Fork of https://github.com/davewasmer/devcert/ with the following change:
A full root certificate is generated and authorized each time for security, deleting the private keybefore returning the signed key and certificate which should then be cached by the application. If the certificate is invalidated, a new full generation process can be run.
Available at:
npm install devcert-sanscache
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('myapp').then((ssl) => {
https.createServer(ssl, app).listen(3000);
});
Now open https://myapp:3000 (assuming host configuration, or otherwise https://localhost:3000) and voila
Thankully, Firefox makes this easy. There's a point-and-click wizard for importing and trusting a certificate - devcert will instead automatically open Firefox and kick off this wizard for you. Simply follow the prompts to trust the certificate.
The software installed varies by OS:
brew install nssapt install libnss3-toolsWhen you ask for a development certificate, devcert 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.
devcert-sanscache then uses this root certificate to authorize a new SSL certificate, before deleting the private key for the root certificate. This ensures that browsers won't show scary warnings about untrusted certificates, since your OS and browsers will now trust devcert's certificate. The root CA certificate is unique to your machine only, and is generated on-the-fly when it is first installed. No other certificates can be generated from this root CA once the private key has been deleted.
Since your browser & OS now trust the root authority, they'll trust the certificate for your app - no more scary warnings!
MIT © Dave Wasmer
FAQs
Generate trusted local SSL/TLS certificates for local SSL development
The npm package devcert-sanscache receives a total of 154,563 weekly downloads. As such, devcert-sanscache popularity was classified as popular.
We found that devcert-sanscache demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
npm v12 is generally available, turning install scripts off by default and beginning the deprecation of 2FA-bypass publishing tokens.

Research
/Security News
Socket tracks the activity as Operation “Muck and Load”: a threat actor uses commit-farming workflows, public dead drops, and protected archives to stage Windows RAT and infostealer malware.

Security News
pnpm 11.10 hardens registry auth to block token redirection, tightens pack-app and deploy, and makes the Rust port (v12) installable.