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

winui-nuxt

v0.1.9

Published

为了构建ui接近win11风格的客户端项目,这个项目诞生了,但是他注定是粗糙的。如果你感兴趣,可以fork他进行二次开发完善,不建议直接使用在正式项目中

Downloads

36

Readme

Nuxt 3 & Winui3

为了构建ui接近win11风格的客户端项目,这个项目诞生了,但是他注定是粗糙的。如果你感兴趣,可以fork他进行二次开发完善,不建议直接使用在正式项目中

Setup

# npm
npm install winui-nuxt

# pnpm
pnpm install winui-nuxt

# yarn
yarn install winui-nuxt

# bun
bun install winui-nuxt

这个项目基于Nuxt的Layer能力拓展到项目,也就是说他局限于Nuxt3,如果你在使用别的技术栈,可以尝试其他项目

###1.npm(推荐) nuxt.config.ts

export default defineNuxtConfig({
  extends: [
    'winui-nuxt',
  ]
})

###2.Github nuxt.config.ts

export default defineNuxtConfig({
  extends: [
    'github:username/repoName#main',        // GitHub 远程源
  ]
})

##Issues

1.可能会出现路径问题,请检查是否符合你的项目路径别名设置。根据官网描述,Nuxt官方正在寻找更好的解决方案,所以这个项目使用的路径别名将会是用户的路径。

2.需要自己安装unocss并创建相关文件,可以在包里直接复制,后续考虑通过预设包安装

##Thanks