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

@linkways/nexus-design

v0.0.0

Published

Enterprise-grade UI components for Nexus social and business platforms.

Readme

@linkways/nexus-design

Nexus 社交与商业平台的企业级 UI 组件库。基于 Vue 3Element PlusUnoCSS 构建。

🚀 特性

  • 💎 现代设计:专为企业级应用打造的简洁、专业的 UI 界面。
  • 🛠 强类型支持:所有组件和 Props 均提供完善的 TypeScript 支持。
  • 📦 支持 Tree Shaking:按需引入,优化打包体积。
  • 🎨 高度可定制:通过 CSS 变量和 UnoCSS 轻松定制主题。

📦 安装

pnpm add @linkways/nexus-design

请确保你已经安装了以下对等依赖(Peer Dependencies):

pnpm add vue element-plus @element-plus/icons-vue

🧩 核心组件

| 组件名 | 描述 | |-----------|-------------| | StatsCards | 仪表盘统计摘要卡片。 | | SystemStatus | 实时系统状态与健康检查指标。 | | InsightCards | AI 驱动的洞察与高亮卡片。 | | NxContactList | 功能完备的联系人与部门管理列表。 | | NxWikiList | 文档管理与知识库列表。 | | NxMeetingList | 会议预定与会议室管理。 | | NxWorkflowList | 审批工作流与任务追踪。 |

💻 使用示例

基础示例:NxContactList

<script setup lang="ts">
import { NxContactList } from '@linkways/nexus-design';
import { User, OfficeBuilding } from '@element-plus/icons-vue';

const depts = [
  { name: "工程部", count: 24, icon: OfficeBuilding },
  { name: "设计部", count: 12, icon: User }
];

const contacts = [
  {
    id: "1",
    name: "张三",
    role: "首席工程师",
    dept: "工程部",
    email: "[email protected]",
    avatar: "ZS"
  }
];

const handleSelectContact = (contact) => {
  console.log('已选择联系人:', contact);
};
</script>

<template>
  <NxContactList 
    :contacts="contacts"
    :depts="depts"
    @select-contact="handleSelectContact"
  />
</template>

🛠 开发指南

环境准备

pnpm install

编译打包

pnpm build

发布到 npm

由于这是一个作用域包(Scoped Package),首次发布时需要指定公开访问权限:

npm publish --access public

或者使用 pnpm(已在 package.json 中配置 publishConfig):

pnpm publish

📄 开源协议

MIT © Linkways