如何从config.js文件中删除注释,它在我的项目中充当JSON文件。 在我的配置文件中,我有像这样的单行注释
//comment goes here
和这样的多行评论
/* comments goes here */
所以我使用 strip-json-comments 删除评论。 我使用以下命令
全局安装它npm install --global strip-json-comments
但问题是每当我尝试在Node命令中运行此命令时我都会收到错误
strip-json-comments config.js > config_comments_removed.js
错误
'strip-json-comments' is not recognized as an internal or external command,operable program or batch file.
请帮我解决这个问题 在此先感谢