28 # commander 的用法

简介: 28 # commander 的用法

node 和前端的区别

  • 前端里面有 BOM 和 DOM,服务端没有,也没有 window
  • 服务端里面有 global 全局对象(浏览器也有 global,只不过访问属性的时候都是通过 window 来代理,没有直接访问 global,也不能直接访问 global)
console.log(global);
// global 跟 window 一样,可以循环引用
console.log(global.global.global);

process 进程(重要)

process 默认取值就会向 global 中查找

不能写成 this.process:node中有一个模块化系统,是以文件为单位,每个文件都是一个模块,模块中的 this 被更改成 {}

console.log(global.process);

(1)platform:可以用这个属性来判断当前执行的系统环境

console.log(process.platform);

https://nodejs.org/api/process.html#process_process_platform

(2)argv:可以解析用户传递的参数(第一个参数:node.exe;第二个参数:node当前执行的文件)

执行 node 文件 node index.js a b c dwebpack --mode --config --port --process

console.log(process.argv);

例子:node '28 # commander 的用法.js' --port 3000 --color red --config kaimo

let args = process.argv.slice(2);
let obj = {};
args.forEach((item, index) => {
    if (item.startsWith("--")) {
        obj[item.slice(2)] = args[index + 1];
    }
});
console.log(obj); // { port: '3000', color: 'red', config: 'kaimo' }

commander

先安装依赖

npm init -y
npm install commander

在 npm 上的模块都需要先安装在使用(模块内部也提供了几个属性,也可以在模块中直接访问,比如:require 就相当与是参数)

const program = require("commander");
let kaimo = program
    .command("create")
    .action(() => {
        console.log("创建项目");
    })
    .version("3.1.3")
    .name("kaimo")
    .usage("怎么使用?")
    .option("-p,--port <v>", "设置你的端口")
    .option("-c,--color <v>", "设置你的颜色")
    .option("-cf,--config <v>", "设置你的配置")
    .parse(process.argv);

执行:

node '28 # commander 的用法.js' -h

node '28 # commander 的用法.js' -V

node '28 # commander 的用法.js' create xxx

目录
相关文章
63 # commander 的配置
63 # commander 的配置
34 0
|
Web App开发 缓存 Shell
[oeasy]python0069_帮助手册_pydoc_manual_document
[oeasy]python0069_帮助手册_pydoc_manual_document
97 0
Cypress 好用的用法
大家好,我是阿萨。之前学习了cypress的最基本的用法。可是有些同学还是反馈不会写cypress,怎么办? 今天就列举一些常见的cypress的写法。
269 0
|
开发工具
ctags使用方法
ctags使用方法
191 0
|
Python
Cypress系列(75)- spread() 命令详解
Cypress系列(75)- spread() 命令详解
150 0
Cypress系列(75)- spread() 命令详解
|
资源调度 索引
Cypress系列(98)- cypress-xpath 插件, xpath() 命令详解
Cypress系列(98)- cypress-xpath 插件, xpath() 命令详解
383 0
Cypress系列(98)- cypress-xpath 插件, xpath() 命令详解
Cypress系列(84)- Cypress.arch 命令详解
Cypress系列(84)- Cypress.arch 命令详解
114 0
Cypress系列(84)- Cypress.arch 命令详解
|
测试技术 API 开发者
Cypress系列(89)- Cypress.log 命令详解
Cypress系列(89)- Cypress.log 命令详解
348 0
Cypress系列(89)- Cypress.log 命令详解
|
JavaScript
Cypress系列(93)- Cypress.dom 命令详解
Cypress系列(93)- Cypress.dom 命令详解
295 0
Cypress系列(93)- Cypress.dom 命令详解
Cypress系列(34)- window() 命令详解
Cypress系列(34)- window() 命令详解
299 0
Cypress系列(34)- window() 命令详解