Вот информация о моем компьютере:
версия узла 10.16.0
npm версия 6.9.0
Переменные среды C:\Users\tran.sonhoang\AppData\Roaming\npm\node_modules\@angular\cli\bin
Моя проблема, когда я запускаю ng new app-name
Я получу файл с этой информацией
#!/usr/bin/env node
'use strict';
// Provide a title to the process in `ps`.
// Due to an obscure Mac bug, do not start this title with any symbol.
try {
process.title = 'ng ' + Array.from(process.argv).slice(2).join(' ');
} catch(_) {
// If an error happened above, use the most basic title.
process.title = 'ng';
}
// Some older versions of Node do not support let or const.
var version = process.version.substr(1).split('.');
if (Number(version[0]) < 10 || (Number(version[0]) === 10 && Number(version[1]) < 9)) {
process.stderr.write(
'You are running version ' + process.version + ' of Node.js, which is not supported by Angular CLI 8.0+.\n' +
'The official Node.js version that is supported is 10.9 or greater.\n\n' +
'Please visit https://nodejs.org/en/ to find instructions on how to update Node.js.\n'
);
process.exit(3);
}
require('../lib/init');
Эта проблема настолько странна для меня, поскольку я впервые вижу эту проблему с angular-cli.
Что я пробовал:
- Удален узел и снова установлена та же версия.
- Удалить npm кеш + обновить npm
- Удалите Angular-cli и переустановите
Но это все еще не решило эту проблему. Любая помощь будет оценена. Спасибо!