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

bd-admin

v1.0.12

Published

一款能根据需求快速配置vue后台管理的脚手架

Downloads

103

Readme

简介

bd-admin是一款能根据需求快速配置vue后台管理的脚手架,内置使用vue3 + vue-router + pinia + axios 其他功能均可自定义。

  • 极简操作,安装就可使用
  • 轻装上阵,模块功能自己决定是否使用,可以快速修改为自己想要的模板。
  • 自定义技术栈 : vue3 +elementUI or vue3+Ant Design 由你搭配
  • 自定义后台管理功能模块:权限配置 or 多语言 or 动态换肤 项目功能由你选择
  • 代码规范可配置:自选是否在项目中应用eslint 和Prettier

下载

npm i bd-admin -g

使用方法

admin-cli create <name>

固定功能

  • [x] 多主题:内置普通、黑暗、深蓝三种主题模式
  • [x] 权限管理:内置页面权限(动态路由)、按钮权限

功能

  • 框架技术自提
    • [x] 语言选择: typeScript or javaScript
    • [x] ui库选择 :element Plus or Ant Design
    • [x] css扩展语言选择: less or scss
    • [x] 代码规范:eslint 和Prettier
    • [x] 多语言:使用i18配置多语言
  • 框架模块自提
    • [x] echarts
    • [x] three.js

生成项目 目录结构

bd-admin
├─ .env.development    # 开发环境
├─ .env.production     # 生产环境
├─ .eslintrc.cjs       # eslint
├─ README.md
├─ dist               # 打包dist
├─ public             # 静态资源
├─ src                # 源码
│  ├─ api             # 接口请求
│  ├─ components      # 公共组件
│  ├─ config          # 全部配置
│  	  └─ white-list.ts# 路由白名单
│  ├─ layouts         # 全局Layout
│  ├─ lang        	  # 国际化
│  ├─ router          # 路由
│  ├─ store           # 全局store管理
│  ├─ styles          # 全局样式
│  ├─ utils           # 全局公共方法
│  └─ views           # 所有业务页面
├─ tsconfig.json      # ts 编译配置
└─ vue.config.js      # vue-cli 配置