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

@m-tools/mt-template-admin

v1.0.31-alpha.0

Published

A template for admin

Downloads

233

Readme

Admin

指在快速搭建一个前端的中后台项目,并且包含了部分必要的技术栈依赖

中后台开发的关注点:

  • 开发效率提升
  • 技术管理选型
  • 项目可维护性

初始化的项目包含哪些东西:

  • 包含基础布局,其中包含:左侧导航,头部;
  • 包含基础的功能接口,其中包含:登录、登出、修改密码、设置菜单,缓存用户数据;
  • 包含 nodejs 作为静态资源服务器,并且能够进行请求转发的配置,方便启动生产服务;
  • 使用 typescript 语法,为中后台复杂的数据类型和逻辑提供基础;
  • 使用 eslint 去规范代码,使代码风格统一,并且远离不安全的写法;
  • 使用 mobx,更方便的管理复杂的应用状态,而不需要编写套版语法,开发效率更高;
  • 兼容 qiankun,可以直接作为微前端的子应用;

技术栈

| 技术栈 | 版本 | 浏览器兼容性 | | :-: | :-: | :-: | | react | 17 | 现代浏览器 IE >= 9 | | mobx | 6 | 现代浏览器,可回退兼容 ES5 | | mobx-react | 7 | | | react-router | 5 | | | ant-design | 5 | | | qiankun | 2.4.X | | | typescript | | |

目录简介

|- api // 接口存放目录
  |- index.ts // 接口统一导出
|- public // 页面模板,favicon
|- server // node 静态资源服务器,包括代理转发
|- src // 开发目录
  |- errorPages // 包含403、404、500的错误页面
  |- layout // 头部和左侧菜单
  |- pages // 页面部分
  |- routers // 路由配置,所有页面路由建议统一配置,方便管理
  |- stores // 全局状态配置,只包含全局状态,页面状态建议分布在相应的页面中
  |- App.tsx // 根组件
  |- index.ts // 项目入口文件
|- babel.config.js // babel 相关配置
|- jaraxxus.config.js // webpack 构建工具相关配置
|- package-lock.json
|- service.config.js // node 服务端相关配置
|- package.json
|- tsconfig.json // tsconfig 配置

eslint 规则