I know that NodeJS is important when using npm to download modules but does react depends from it? For example i have a react app created from create-react-app and i have this part:
import ReactDOM from 'react-dom';
import './index.css';
Is nodeJs used to configure the paths in the files or is it just the babel compiler that does that?
If yes, is babel configured to look in the node_modules files like NodeJs does?