NPM Warn устарел tar@2.2.2: эта версия TAR больше не поддерживается и не будет получать обновления безопасности. Пожалуйста, обновите как можно скорее.

To Solve npm WARN deprecated tar@2.2.2: This version of tar is no longer supported, and will not receive security updates.
Please upgrade asap Error Just create react project with npx command and you will not face any deprecation error. 
Here is command:
npx create-react-app my-app && cd my-app && npm start and now, your error should be disappear.
Farmer N21