Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以帮助我了解从终端运行节点脚本与使用./ [Filename]运行它之间的区别node [filename]吗?
./ [Filename]
node [filename]
非常感谢。
./[Filename]这与使用or运行 bash 脚本相同bash [Filename]。
./[Filename]
bash [Filename]
要使用./[Filename]语法,您的节点脚本应该:
chmod +x [Filename]
#!/usr/bin/node
#!/usr/bin/env node
运行脚本没有任何要求node [Filename]。
node [Filename]