Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

webpack-serve-certificate-creator

webdeveric377MIT0.1.1TypeScript support: included

webpack plugin to generate SSL certificate for local development

webpack, serve, plugin, webpack-dev-server, certificate, generator, selfsigned

readme

WebpackServeCertificateCreator

Node.js CI

Install

pnpm add webpack-serve-certificate-creator -D
npm install webpack-serve-certificate-creator -D

Usage

Import the plugin in your webpack config.

import { WebpackServeCertificateCreator } from 'webpack-serve-certificate-creator';

Add the plugin to your plugins.

{
  plugins: [
    new WebpackServeCertificateCreator({
      // This dir should be added to .gitignore
      outDir: '.certificate-cache',
      // Defaults to `localhost`
      commonName: 'your.hostname.example.com',
      options: {
        days: 365,
        keySize: 4096,
      },
    }),
  ];
}