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

ns-web-admin-lib

v2.2.0

Published

NS Web Admin Component Library - Pre-built components and assets for web applications

Readme

NS Web Admin Component Library

NS Web Admin 项目的预构建版本,包含完整的 Vue3 组件、样式和资源文件。

特性

  • 🎯 基于 Vue 3 + TypeScript 构建
  • 🎨 集成 Ant Design Vue 组件
  • 📦 预构建,开箱即用
  • 🌈 丰富的业务组件和功能模块
  • 💼 适用于管理后台系统开发

安装

npm install ns-web-admin-lib
# 或
yarn add ns-web-admin-lib
# 或
pnpm add ns-web-admin-lib

使用方法

ES Module 导入

import /* 组件名 */ 'ns-web-admin-lib';

// 或导入整个库
import * as NSWebAdminLib from 'ns-web-admin-lib';

CommonJS 导入

const NSWebAdminLib = require('ns-web-admin-lib');

在 Vue 应用中使用

import { createApp } from 'vue';
import App from './App.vue';

// 导入样式
import 'ns-web-admin-lib/style.css';

const app = createApp(App);

// 使用组件
// import { YourComponent } from 'ns-web-admin-lib';
// app.component('YourComponent', YourComponent);

app.mount('#app');

依赖要求

该库需要以下对等依赖:

{
  "vue": "^3.3.0",
  "@ant-design/icons-vue": "~6.1.0",
  "ant-design-vue": "~4.2.0"
}

请确保在您的项目中安装这些依赖:

npm install vue@^3.3.0 @ant-design/icons-vue@~6.1.0 ant-design-vue@~4.2.0

包含内容

  • 组件库: 预构建的 Vue 组件
  • 样式文件: CSS 样式和主题
  • 资源文件: 图标、字体、图片等静态资源
  • 类型定义: TypeScript 类型声明文件

构建信息

  • 主入口: CommonJS 格式 (ns-web-index.cjs.js)
  • ES 模块: ES Module 格式 (ns-web-index.es.js)
  • 类型定义: TypeScript 类型文件

版本信息

当前版本: 2.10.0

开发相关

源码仓库

  • 仓库地址: https://gitlab.wangxingcloud.com/web/ns-web-admin
  • 问题反馈: https://gitlab.wangxingcloud.com/web/ns-web-admin/-/issues

贡献指南

本包是自动构建生成的,如需修改请在源码仓库中提交 PR。

许可证

MIT License

作者


注意:这是一个预构建的组件库包,包含编译后的代码和资源。如果您需要源码或自定义构建,请访问源码仓库。