npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vite-plugin-http2-ws

v1.0.15

Published

a vite plugin to solve http2 and proxy conflict, with websocket support. Only tested with vite3.

Downloads

12

Readme

README for english

vite-http2.jpg

npm i vite-plugin-http2-ws

fork 自 strongcode9527/vite-plugin-http2 ,在其上增加 websocket 支持。

vite-plugin-http2-ws 是一个 vite 插件,是为了解决 vite 无法同时开启 proxy 代理以及 http2 的问题

支持正常 http2 以及 websocket 转发

改用esm打包,支持vite新版本

这个插件可以解决以下难题

  • 使用 devcert 库自动生成 https 证书,并且自动配置在系统内部(第一次进入开发环境,需要输入密码将证书放入系统指定目录)
  • 使用 http2-proxy 进行代理转发。
  • 有限支持 websocket,仅 log error 不能处理。
// vite.config.js

import http2 from "vite-plugin-http2-ws";

export default {
  plugins: [
    http2({
      // 如果你的开发环境只是用 localhost 开发,这个配置项可以忽略
      certificateDomain: ["my-test.xxx.com"],
      proxy: {
        // 创建正则表达式的字符串,这里识别需要代理的接口
        "^/api": {
          hostname: "localhost",
          port: 7001,
          async onReq(req, options) {
            // 如果路径需要修改,可以在这里修改添加
            options.path = `/prefix/${options.path}`;
          },
        },
        '^/ws/connect/': {
            ws: true, // support websocket proxy
            hostname: 'xxx.com',
            protocol: 'http or https',
        },
      },
      // 如果 https 证书创建失败,可以自己创建,并在这里传入
      ssl: {
        key: "",
        cert: "",
      },
      // 超时时间,不填则为node环境http_request默认超时时间
      timeout: 1000,
    }),
  ],
};

| key | desc | default | | ----------------- | ------------------------------------------------------------------------------------------- | ------------- | | proxy | proxy http2-proxy options | - | | certificateDomain | HTTPS certificate domain name | ['localhost'] | | ssl | if devcert create certificate fail,you can pass your ssl option | - | | timeout | timeout specification | - |

使用过程中 https 证书创建失败,或出现诡异问题,可使用此命令清除证书创建的缓存。

重启开发环境后,便可重新创建 https 证书。

// mac

rm -rf ~/Library/"Application Support"/devcert/