当我尝试通过babel命令运行JS
文件时,它
显示:
“babel-node is not recognized as an internal or external command,operable program or batch file”.
我在这个写的“console.log(”hello world“)中创建了1.js文件”;
并尝试使用babel-node命令运行,但它显示上述错误.
确保你有babel模块,以便它可以使用.
例如,通过使用npm install babel-cli获取node_modules文件夹.然后你可以在node_module / .bin中找到runnable.
原文链接:https://www.f2er.com/js/150781.html