You can create reactjs project quickly on windows7 using nodejs v13. Yes you might have gone through tutorials stating that nodejs do not support on windows 7 so to create react projects you need latest os windows 8 or windows10. Not to worry, Just follow below steps and you are ready to work with react. 1.npm init 2.npm install react react-dom react-router-dom 3.npm install --save-dev webpack webpack-cli 4.npm install --save-dev '@babel/core' '@babel/preset-react' 5.npm install --save-dev babel-loader html-loader style-loader css-loader sass-loader html-webpack-plugin create file .babelrc for babel create file webpack.config.js for webpack create file index.html for template create file header.js in components folder for react component create file index.js for react processing Make node server ready 1.npm install express 2.npm install --save-dev nodemon create app.js to give server port and handle request response objects Done.
You can create reactjs project quickly on windows7 using nodejs v13. Yes you might have gone through tutorials stating that nodejs do not support on windows 7 so to create react projects you need latest os windows 8 or windows10. Not to worry, Just follow below steps and you are ready to work with react. 1.npm init 2.npm install react react-dom react-router-dom 3.npm install --save-dev webpack webpack-cli 4.npm install --save-dev '@babel/core' '@babel/preset-react' 5.npm install --save-dev babel-loader html-loader style-loader css-loader sass-loader html-webpack-plugin create file .babelrc for babel create file webpack.config.js for webpack create file index.html for template create file header.js in components folder for react component create file index.js for react processing Make node server ready 1.npm install express 2.npm install --save-dev nodemon create app.js to give server port and handle request response objects Done.