最近、デバッグしようとしている Web アプリケーション (Node.js/Express + React) のクローンを作成しました。
ノードデバッガーを使用してみましたが、WebStorm 構成を使用してアプリケーションをデバッグモードで実行しようとしました。
両方のケースで表示されるエラーは次のとおりです。
Unhandled rejection SyntaxError: Unexpected reserved word
at exports.runInThisContext (vm.js:53:16)
at Module._compile (module.js:373:25)
at Object.Module._extensions..js (module.js:416:10)
at Module.load (module.js:343:32)
at Function.Module._load (module.js:300:12)
at Module.require (module.js:353:17)
at require (internal/module.js:12:17)
これが私のスクリプトセクションの一部ですpackage.json
"main": "server.js",
"scripts": {
"start": "webpack && babel-node server.js",
"test": "grunt test",
"build": "grunt build",
"all": "npm run build && npm run test"
},
このエラーの内容と、デバッガーを実行する方法がわかりません。