Mkcert: Tool for making locally-trusted development certificates
1–10 of 41 posts
Re: Mkcert: Tool for making locally-trusted development certificates
#2Re: Mkcert: Tool for making locally-trusted development certificates
#3It's funny how people seem to do the same thing at the same time. I recently made https://github.com/socketry/localhost however `mkcert` has lots of good ideas I'm going to "borrow" :)
Re: Mkcert: Tool for making locally-trusted development certificates
#4It's funny how people seem to do the same thing at the same time. I recently made https://github.com/socketry/localhost however `mkcert` has lots of good ideas I'm going to "borrow" :)
I made my own variant of this as well, although it was just config files & shell scripts wrapping OpenSSL instead of being a custom binary.
I mostly used the Ruby C-bindings, and I feel like finding information and documentation was very difficult, and it was even harder to figure out if there was any best practices I was missing.
It baffles me that so important infrastructure is built upon something that feels this brittle, and it keeps me up at night :-)
Re: Mkcert: Tool for making locally-trusted development certificates
#5 npx tlx-keygen
- No installation required, npx comes with Node.js and downloads/runs/removes the package.- Generate localhost certs with support for *.localhost, 127.0.0.1 (IPv4), ::1 (IPv6), etc.
- Register in operating system trust store (Win/Lin/Mac)
- Tested with major browsers (Chrome/Firefox/Safari/Edge)
Re: Mkcert: Tool for making locally-trusted development certificates
#6Re: Mkcert: Tool for making locally-trusted development certificates
#7npx tlx-keygen - No installation required, npx comes with Node.js and downloads/runs/removes the package. - Generate localhost certs with support for *.localhost, 127.0.0.1 (IPv4), ::1 (IPv6), etc. - Register in operating system trust store (Win/Lin/Mac) - Tested with major browsers (Chrome/Firefox/Safari/Edge) https://www.npmjs.com/package/tls-keygen
Re: Mkcert: Tool for making locally-trusted development certificates
#8is there an advantage to this over using openssl or nss/certutil commands?
Re: Mkcert: Tool for making locally-trusted development certificates
#9Re: Mkcert: Tool for making locally-trusted development certificates
#10is there an advantage to this over using openssl or nss/certutil commands?