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

create-moji-vue

v0.0.4

Published

cli生成项目模板

Downloads

186

Readme

moji-cli

此包为墨迹前端内部使用,需内网环境。

开始

  1. 全局安装
npm install create-moji-vue -g

创建项目

npm init moji-vue <project—name>

参数说明:

| 参数 | 说明 | 是否必填 | | ------------ | ---------------- | -------- | | project—name | 所创建项目的名称 | 是 | | --force, -f | 强制覆盖同名项目 | 否 |

模版列表:

| 模版 | 说明 | | | ---- | ---- | ---- | | Base | | | | lint | | |

示例:

  1. 创建项目 demo
npm init moji-vue <project—name>

# 或全局安装后执行

create-moji-vue create demo

内部包安装工具说明

  • 默认优先使用 pnpm安装依赖
  • 找不到默认包管理工具时,默认依次使用yarn npm 安装依赖

扩展工具

新增模版
  1. 修改配置文件即可,配置文件地址: moji-fe/moji-cli-config/vue-config.jss

    templates: [
        {
          name: 'vue', 															// 模版名称
          describe: 'vue + ts', 										// 模版描述
          respositoyUrl: 'moji-fe/vue-template', // 模版所在仓库
          branch: 'master', 														// 拉取模版的分支或者tag
          tag: '', 																		// 优先级branch高于tag
        },
        ...
    ]

    配置参数说明:

    | 参数 | 说明 | 是否必须 | | ------------- | ------------------------------- | ----------------------------------------- | | name | 模版名称 | 是 | | describe | 模版描述 | 否 | | respositoyUrl | 模版所在仓库 | 是 | | branch | 拉取模版的分支,优先级高于tag | 否, 和tag都不存在时,默认为master分支 | | tag | 拉取模版的tag,优先级低于branch | 否, 和branch都不存在时,默认为master分支 |