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

mesh-login

v1.1.0

Published

* 项目的简介以及用途

Downloads

5

Readme

mesh-login

  • 项目的简介以及用途

    mesh 项目的登录注册设置页面,用于客户端 webview 以及桌面端

  • 项目的开发环境配置,调试过程,项目的生产的配置,部署过程

      // 安装依赖通过在项目主目录 lerna bootstrap 安装

      // 开发
      yarn dev

      // 打包-测试服务器
      yarn build
      // 打包-正式服务器
      yarn build -p

      // 部署-测试服务器
      yarn deploy
      // 部署-正式服务器
      yarn deploy -p
  • 项目的依赖的用途(每个依赖用一句话介绍)
      "mesh-common-element": "^1.0.0", // 共享组件
      "mesh-devtool": "^1.0.0", // 开发打包部署工具
      "mesh-assets": "^1.0.0", // 共享静态资源
      "mesh-shared": "^1.0.0", // 共享 store,directive,api,util 等
      "mesh-style": "^1.0.0", // 共有样式
      "mesh-common-grid": "^1.0.0", // 布局组件
      "cropperjs": "^1.1.3" // 图像编辑插件
  • 项目的目录结构,每个目录的用途
      ├── package.json
      ├── src
      │   ├── Login.vue
      │   ├── __test__ // 测试
      │   ├── components
      │   │   ├── ChangeAccount // 更改账号页面
      │   │   ├── ForgetPass.vue // 忘记密码页面
      │   │   ├── Form // Form 相关组件
      │   │   ├── ImgCrop.vue // 图片处理组件
      │   │   ├── Navigator.vue // Nav 组件
      │   │   ├── ResetPassword // 重置密码页面
      │   │   ├── Setting // 设置页面
      │   │   ├── Setting.vue // 设置页面入口
      │   │   ├── SignIn.vue // 登录页面
      │   │   ├── SignUp.vue // 注册页面入口
      │   │   ├── Signup // 注册页面
      │   │   ├── StepProgress.vue // progressbar 组件
      │   │   ├── VerifyCode.vue // 验证码组件
      │   │   └── WarnMsg.vue // 错误提醒组件
      │   ├── i18n // intl
      │   ├── index.js // 程序入口
      │   └── route.js // route config
      └── yarn.lock