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 🙏

© 2025 – Pkg Stats / Ryan Hefner

meixicli

v1.1.8

Published

通过命令行快速搭建前端项目的脚手架。

Downloads

28

Readme

meixicli

通过命令行快速搭建前端项目的脚手架。

项目结构

    |-- bin   
    |   |-- index.js -----------------------------脚步入口文件
    |-- scripts ----------------------------------生产文件的脚步代码
    |   |-- checkUpdate.js
    |   |-- createTemplate.js
    |   |-- log.js
    |-- template ---------------------------------用于存放模版的文件夹
        |-- meixi-vue2 ---------------------------目前只有vue2版,之后考虑其它项目
            |-- .DS_Store
            |-- .editorconfig
            |-- .env
            |-- .env.beta
            |-- .env.prod
            |-- .gitignore
            |-- .prettierrc
            |-- README.md
            |-- babel.config.js
            |-- jsconfig.json
            |-- package-lock.json
            |-- package.json
            |-- vue.config.js
            |-- public
            |   |-- .DS_Store
            |   |-- favicon.ico
            |   |-- index.html
            |   |-- robots.txt
            |   |-- img
            |       |-- logo.png
            |       |-- icons
            |           |-- android-chrome-192x192.png
            |           |-- android-chrome-512x512.png
            |           |-- android-chrome-maskable-192x192.png
            |           |-- android-chrome-maskable-512x512.png
            |           |-- apple-touch-icon-120x120.png
            |           |-- apple-touch-icon-152x152.png
            |           |-- apple-touch-icon-180x180.png
            |           |-- apple-touch-icon-60x60.png
            |           |-- apple-touch-icon-76x76.png
            |           |-- apple-touch-icon.png
            |           |-- favicon-16x16.png
            |           |-- favicon-32x32.png
            |           |-- msapplication-icon-144x144.png
            |           |-- mstile-150x150.png
            |           |-- safari-pinned-tab.svg
            |-- src
                |-- .DS_Store
                |-- App.vue
                |-- main.js
                |-- registerServiceWorker.js
                |-- assets
                |   |-- .DS_Store
                |   |-- image
                |   |   |-- logo.ico
                |   |-- svgs
                |       |-- .DS_Store
                |       |-- index.js
                |       |-- svgo.yml
                |       |-- svg
                |           |-- 404.svg
                |           |-- Excel.svg
                |           |-- Exe.svg
                |           |-- PPT.svg
                |           |-- Pdf.svg
                |           |-- Word.svg
                |           |-- img.svg
                |           |-- login1.svg
                |           |-- login2.svg
                |           |-- login3.svg
                |           |-- logo-full.svg
                |           |-- logo-small.svg
                |           |-- music.svg
                |           |-- no-content.svg
                |           |-- no-data.svg
                |           |-- no-message.svg
                |           |-- no-record.svg
                |           |-- no-search.svg
                |           |-- shipin.svg
                |           |-- txt.svg
                |           |-- weizhiwenjian.svg
                |           |-- yasuobao.svg
                |-- components -------------------------------用于存放该子系统的公共组件
                |   |-- .DS_Store
                |   |-- base
                |   |   |-- brieflyItem.vue
                |   |   |-- themeItemBox.vue
                |   |   |-- titleTimeTag.vue
                |   |-- drawerInfoBar
                |   |   |-- drawerInfoBar.vue
                |   |-- editor
                |   |   |-- editorCss.js
                |   |   |-- index.less
                |   |   |-- index.vue
                |-- config
                |   |-- .DS_Store
                |   |-- element.js
                |   |-- request.js
                |   |-- responceError.js
                |   |-- uploadRequest.js
                |   |-- useMeixiOaComponent.js
                |   |-- usemeixiPackage.js
                |   |-- vueDirective.js
                |   |-- api ----------------------------------存放子系统中的网络请求按下面的结构进行存放
                |   |   |-- other.js
                |   |   |-- adminmanage
                |   |   |   |-- apiAccount.js
                |   |   |   |-- apiOfDepart.js
                |   |   |   |-- apiOfHelpMenu.js
                |   |   |   |-- apiOfMenu.js
                |   |   |   |-- apiOfNotify.js
                |   |   |   |-- apiOfStaff.js
                |   |   |-- application
                |   |       |-- apiOfApplication.js
                |   |-- appMainConfig
                |   |   |-- initAppMain.js
                |   |-- dict
                |   |   |-- dict.js
                |   |-- request
                |   |   |-- UseRequest.js
                |   |-- selectStore
                |       |-- refundTypeStore.js
                |       |-- registerStore.js
                |-- pages
                |   |-- .DS_Store
                |   |-- 404
                |   |   |-- index.vue
                |   |-- dashboard
                |   |   |-- base
                |   |       |-- index.vue
                |   |       |-- components
                |   |           |-- brieflyItemWrap.vue
                |   |           |-- customMember.vue
                |   |           |-- saleBriefly.vue
                |   |           |-- saleBrieflyItem.vue
                |   |-- setting
                |   |   |-- settingAccount
                |   |   |   |-- index.vue
                |   |   |   |-- components
                |   |   |       |-- settingAccountForm.vue
                |   |   |       |-- verifyEmail.vue
                |   |   |-- settingConfig
                |   |   |   |-- index.vue
                |   |   |-- settingPassword
                |   |       |-- index.vue
                |   |       |-- components
                |   |           |-- settingPasswordForm.vue
                |   |-- test  ---------------------------------------------对应目录
                |       |-- testChildren ----------------------------------对应菜单
                |           |-- index.vue ---------------------------------页面入口文件
                |           |-- components --------------------------------页面需要用到的组件
                |           |   |-- testForm.vue
                |           |   |-- testTable.vue
                |           |-- js ----------------------------------------存放页面js逻辑
                |               |-- TestConfig.js
                |               |-- apiOfTest.js
                |-- router
                |   |-- index.js
                |   |-- permission.js
                |-- store
                |   |-- .DS_Store
                |   |-- getters.js
                |   |-- index.js
                |   |-- module
                |       |-- app.js
                |       |-- component.js
                |       |-- permissionRouter.js
                |       |-- user.js
                |-- style
                |   |-- index.less
                |-- utils -----------------------------------------------公共方法
                    |-- asyncRouter.js
                    |-- elementValidate.js
                    |-- upload.js
                    |-- utils.js
                    |-- use
                        |-- useSelectStaff.js

安装依赖

npm install meixicli -g

使用插件

//任意端口输入以下命令
meixicli