Socket
Socket
Sign inDemoInstall

vite-plugin-mkcert

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vite-plugin-mkcert

Provide certificates for vite's https dev service


Version published
Maintainers
1
Created

What is vite-plugin-mkcert?

vite-plugin-mkcert is a Vite plugin that allows you to easily create and use locally-trusted development certificates. This is particularly useful for developing applications that require HTTPS in a local environment.

What are vite-plugin-mkcert's main functionalities?

Automatic Certificate Generation

This feature automatically generates and uses locally-trusted development certificates, making it easy to set up HTTPS for your local development environment.

import mkcert from 'vite-plugin-mkcert';

export default {
  plugins: [mkcert()]
};

Custom Certificate Options

This feature allows you to specify custom certificate and key paths, giving you more control over the certificates used in your local development environment.

import mkcert from 'vite-plugin-mkcert';

export default {
  plugins: [
    mkcert({
      source: 'path/to/custom/certificates',
      key: 'path/to/custom/key.pem',
      cert: 'path/to/custom/cert.pem'
    })
  ]
};

Other packages similar to vite-plugin-mkcert

Keywords

FAQs

Package last updated on 31 Jan 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc