配制Node.js和命令行
摘要:配制Node.js和命令行 安装或升级node.js 从Node.js (nodejs.org)下载最新版安装文件。 查看npm全局包有哪些: npm list -g --depth=0 查看npm版本: npm -v 查看哪些包有更新: npm outdated -g 查看参数配置: npm co
阅读全文
COBOL reserved words
摘要:accept access add address advancing after all alphabet alphabetic alphabetic-lower alphabetic-upper alphanumeric alphanumeric-edited also alter altern
阅读全文
变量名总结
摘要:单字母变量 变量名的长度与其作用域大小成正比。 单字母变量代表程序的内部、私有、或临时的数据,作用域非常有限,局限在一个很短作用域内。 abcd 常数,元素 fgh 表示函数变量 ijk 表示循环变量 lmn 表示整数变量,长度变量 pq rst 表示状态序列 uvw 表示向量,复数 xyz 表示自
阅读全文
Testing npm packages before publishing
摘要:Testing npm packages before publishing 参考来源 Now, I use npm pack. npm pack The pack command creates a .tgz file exactly the way it would if you were go
阅读全文
命令行程序:ConEmu
摘要:ConEmu 这是一个命令行程序,可以从ConEmu下载安装。 安装完成后,用管理员启动这个程序,从右上角的菜单中选择setting..., 在右侧的树选择General,如下设置: Choose your startup task or even a shell with arguments: {
阅读全文