Também não funcionou para mim. Tentei também instalar a versão 4.1.2 e não funcionou também.
A primeira tentativa foi esta:
const chalk = require('chalk');
console.log(chalk.blue('vamos começar!'));
const paragrafo = 'Texto retornado por uma função';
function texto(string) {
return string;
}
console.log(texto(paragrafo));
Error [ERR_REQUIRE_ESM]: Must use import to load ES Module: E:\INFORMATICA\ALURA\index.js
require() of ES modules is not supported.
A segunda tentativa, usando o "import" :
import chalk from 'chalk';
console.log(chalk.blue('vamos começar!'));
const paragrafo = 'Texto retornado por uma função';
function texto(string) {
return string;
}
console.log(texto(paragrafo));
(node:13196) Warning: To load an ES module, set "type": "module" in the package.json or use the .mjs extension.(Use node --trace-warnings ...
to show where the warning was created)
E:\INFORMATICA\ALURA\index.js:3
import chalk from 'chalk';
^^^^^^
SyntaxError: Cannot use import statement outside a module