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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@stellaround/px-to-vw-converter

v1.0.4

Published

用于给予基于ant-design-vue、vue3和vite项目的低限度的响应式。

Readme

简介

将像素单位(px)智能转换为视窗宽度单位(vw)的工具,用于给予基于ant-design-vue、vue3和vite项目的低限度的响应式。

✨核心功能

自动将 CSS/JS 中的 px 转换为 vw 支持 Ant Design Vue 的 StyleProvider 样式转换 提供 Vite 插件,覆盖内联样式和构建流程 支持自定义忽略目录和手动转换方法

🚀快速开始

安装依赖

pnpm i @stellaround/px-to-vw-converter

全局配置

在 main.ts 中初始化全局配置:

import { setConfig } from '@stellaround/px-to-vw-converter'

// 默认配置:viewportWidth=1920, precision=2
setConfig({
    viewportWidth: 1920,  // 设计稿宽度(单位:px)
    precision: 3          // 计算精度(小数位数)
})

Ant Design Vue 集成

在根组件中注入样式转换器:

import { transformAntdCss } from '@stellaround/px-to-vw-converter'

export default () => (
    <a-style-provider transformers={[transformAntdCss]}>
    <App />
    </a-style-provider>
)

Vite 插件配置

在 vite.config.ts 中启用转换插件:

import {
    vitePluginInlinePxToVw,
    vitePluginPostCssPxToViewport
} from '@stellaround/px-to-vw-converter'

export default defineConfig({
    plugins: [
        // 处理内联样式(如 Vue 文件中的 <style> 标签)
        vitePluginInlinePxToVw({
            excludeDirs: ['src/pages/overview'] // 忽略指定目录的转换
        }),

        // 处理 CSS 文件(包括 PostCSS 处理链)
        vitePluginPostCssPxToViewport({
            exclude: [/src\/style\//] // 排除指定目录
        })
    ]
})

手动转换方法

对于特殊场景(如动态样式),可使用 convertPxToVw:

import { convertPxToVw } from '@stellaround/px-to-vw-converter'

// 示例:转换 100px → 根据全局配置生成 vw 值
const vwValue = convertPxToVw(100) // 输出如 "5.128vw"

License

Apache

Copyright (c) 2025-present spectature