An npm package to install a mkcert prebuilt binary
npm install mkcert-prebuilt
As this package makes use of install
npm script in order to download a binary for the current platform, ignore-scripts
npm-config cannot be enabled while executing the command above.
Type: string
An absolute path to the installed mkcert binary, which can be used with child_process
functions.
const {spawn} = require('child_process');
const mkcert = require('mkcert-prebuilt');
spawn(mkcert, ['-install']);
Once this package is installed to the project directory, users can execute mkcert
command inside npm scripts of the project.
"create-cert": "mkcert example.org localhost 127.0.0.1 ::1"
$ npm run-script create-cert
ISC License © 2019 Shinnosuke Watanabe
BSD 3-Clause "New" or "Revised" License © 2018 The mkcert Authors