我尝试了一切可能的方法来安装babel-cli babel-preset-react
我尝试的事情npm install --save-dev babel-cli babel-preset-react
但是当我检查babel -h
显示The program 'babel' can be found in the following packages:
我也提到了这个问题但不起作用Babel command not found
答案 0 :(得分:2)
要运行babel命令,您需要安装babel globaly或通过将其保存在脚本中从var adVideoContainer = document.getElementById('ad-video');
var adDisplayContainer = new google.ima.AdDisplayContainer(adVideoContainer);
var adsLoader = new google.ima.AdsLoader(adDisplayContainer);
adDisplayContainer.initialize();
运行它
package.json
并使用
运行scripts: {
babelCmd: "babel src/app.js --out-file=public/scripts/app.js --presets=env,react --watch"
}
如果要直接运行babel命令,则需要安装
npm run babelCmd