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

@breathlessway/potato-cli

v0.0.13

Published

vue3 template generate commander cli

Downloads

7

Readme

Potato

简介

  1. 安装方式 npm i @breathlessway/potato-cli -g
  2. 安装完成后执行 potato -i <projectName> ,按照提示进行输入,即可创建一个项目
  3. 模版集成了通用配置,env 环境变量需要开发者手动填写
  4. 在使用 potato 创建的项目中可以使用命令方便的创建组件、路由、数据集,但是需要按照 potato 初始化的结构目录使用
  5. potato -d ,可以启动本地文档服务
  6. potato -u ,可以升级 potato-cli

命令介绍

  1. potato -ac <componentName> : 创建组件
    • 组件名需按照 vue 的要求,使用 camelCase or kebab-case
    • 组件属性可以参考 组件设计模式-原子化设计
    • 组件类型可以选择 TSX(推荐)和 SFC(单文件组件即 .vue 文件)
    • 组件样式模块化在 TSX 文件下使用 css-module ,在 SFC 下使用 scoped
  2. potato -ar <routerName> : 创建路由
    • 支持创建新的路由文件,当路由文件已存在时会在已有路由文件中添加子路由
    • 添加子路由通过 babel 解析注入
  3. potato -as <storeName> : 创建数据集
    • 数据集默认是使用 namespace
    • 目前 vuex4Typescript 下的类型推断功能很弱,需要自己手动添加类型
  4. potato 所初始化出的 webpack 项目是对 @vue/cli 初始化出项目的一层包装,所以也可以使用 @vue/cli 的命令

注意 ⚠️

  1. macos 和 windows 是忽略文件名称大小写的,所以务必注意创建组件/路由/数据集时的文件名称大小写
  2. 文件路径都需要是 POSIX 风格的
  3. 路由和 使用vuex的数据集 都是依赖 require.context / import.mate.globEager 自动注册的,所以必须严格按照现有目录结构
    • 路由文件不能嵌套,只能为第一层文件,作为路由信息文件
    ├── router/
    │   ├── index.ts
    │   ├── home.ts
    │   └── about.ts
    │   ...
    • 数据集必须为一层目录,必须包含 index.ts 文件作为数据源,type.tsaction name
    ├── store/
    │   ├── index.ts
    │   ├── home
    │   │   ├── index.ts
    │   │   └── type.ts
    │   └── about
    │       ├── index.ts
    │       └── type.ts
    │   ...
    • 使用 pinia 的项目,数据集目录没有限制
  4. node 的最低版本 v14.14.0npm 版本不能高于 6
  5. 在使用 SourceTree 提交代码时如果出现了 Can't find npm ,在用户根目录下创建 .huskyrc 文件,并在文件中写入如下内容,可以使用 which node 查找 node 位置
    # .huskyrc
    export PATH="/Users/admin/.nvm/versions/node/v14.17.6/bin/:$PATH"
  6. 通过在项目的 package.json 中添加了一些字段做标识
    • css 字段标识当前使用的是 less|scss
    • browser 字段标识当前是web端还是h5端
    • path 为项目路由端的前缀和构建时的 publicPath 默认使用项目名称,如果有特殊字符,比如 @ / \ 等时,需要手动修改

Tips

  1. __dirname 是所执行的 JavaScript 文件所在的路径,process.cwd() 是执行命令所在的路径