Failed to execute goal com.github.eirslett:frontend-maven-plugin:1.6:install-node-and-npm (install node and npm) on project tdpco-web-app-ui: Could not download Node.js: Got error code 404 from the server. -> [Help 1]
解决方案:
修改com.github.eirslett插件版本为1.11.0以上
https://github.com/eirslett/frontend-maven-plugin/issues/857
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>1.11.0</version>

问题2:
no such file or directory, scandir '/Users/zyc/codes/github/ambari/contrib/views/files/src/main/resources/ui/node_modules/node-sass/vendor'
解决方法:
npm update
npm install
node node_modules/node-sass/scripts/install.js
npm rebuild node-sass
或者
npm install node-sass --force
或者
npm rebuild node-sass --force