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.
例如: node app.js --help --path=asd
node app.js --help --path=asd
我想知道--help参数索引以确保它是第一个。
--help
Minimist 返回一个对象,其中键是这些参数,但我们不能确定对象键的顺序。
我只看到一个解决方案:
if (process.argv[2].indexOf('--help') === 0 || process.argv[2].indexOf('-h') === 0 ) {...}
如果没有现成的解决方案,那么: