我尝试使用节点设置一个简单的CLI。当我运行npm link
并尝试我的命令时,我会在控制台上记录语法错误,以获得完全有效的JS。
命令行
$ holla
输出:
/usr/local/bin/holla: line 1: syntax error near unexpected token `'hello''
/usr/local/bin/holla: line 1: `console.log('hello')'
这是我的package.json:
{
"name": "npm-cli-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"bin": {
"holla": "index.js"
}
}
这是我的index.js:
console.log('hello')
如果有帮助:
# $PATH variable
/Users/stuartpearman/.rbenv/shims:/Users/stuartpearman/.bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
# npm global packages
/usr/local/lib/node_modules
答案 0 :(得分:3)
bin
属性需要一个可执行文件。因此holla
可执行文件应该是已编译的C(或Go或Pascal或任何创建真实机器代码的程序)程序。如果我没有误解为方便,它也会接受shell脚本,默认为您已配置为用户shell的内容。所以语法错误不是javascript语法错误,但很可能是bash语法错误,因为console.log('hello')
不是有效的shell语法。
这引导我们在unix上找到关于如何指定脚本所用语言的标准解决方案: sh bang 行。你的脚本应该是这样的:
#! /usr/bin/env node
console.log('hello');
是的,node.js支持#!
语法,但仅限于它出现在文件的第一行。