一 安装node
官网下载
二 初始化项目
1、创建文件夹firstSca,在终端打开
2、初始化项目,终端输入命令npm init -y(-y表示所有选项都选yes)
初始化完成后项目中会出现package.json文件,如图
三 简单配置
新建bin/index.js文件 目录结构如下图
index.js
#!/usr/bin/env node
//#!/usr/bin/env node 表示进入直接执行node+当前文件
console.log("hello myfirstsca!")
package.json增加bin属性
{
"name": "firstsca",
"version": "1.0.0",
"description": "",
"main": "index.js",
"bin":{
"firstSca":"bin/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}
网友评论