├── .gitignore ├── .idea ├── Nagarro_Final_Assignment.iml ├── dictionaries │ └── Nishant.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── API_Node_Folder ├── mydata.js ├── package.json ├── routes │ ├── cart.js │ └── products.js ├── seedProductsTable.js └── server.js ├── Front_End_React_Folder ├── .babelrc ├── .eslintrc.js ├── express.js ├── package.json ├── server.js ├── src │ ├── app.jsx │ └── components │ │ ├── Cart │ │ └── cartTable.jsx │ │ └── Products │ │ ├── productsRow.jsx │ │ └── productsTable.jsx ├── static │ ├── bundle.js │ ├── index.html │ └── style.css └── webpack.config.js └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishantsahoo/ShoppingCart-React-NodeJs-Electron/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/Nagarro_Final_Assignment.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishantsahoo/ShoppingCart-React-NodeJs-Electron/HEAD/.idea/Nagarro_Final_Assignment.iml -------------------------------------------------------------------------------- /.idea/dictionaries/Nishant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishantsahoo/ShoppingCart-React-NodeJs-Electron/HEAD/.idea/dictionaries/Nishant.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishantsahoo/ShoppingCart-React-NodeJs-Electron/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishantsahoo/ShoppingCart-React-NodeJs-Electron/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishantsahoo/ShoppingCart-React-NodeJs-Electron/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishantsahoo/ShoppingCart-React-NodeJs-Electron/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /API_Node_Folder/mydata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishantsahoo/ShoppingCart-React-NodeJs-Electron/HEAD/API_Node_Folder/mydata.js -------------------------------------------------------------------------------- /API_Node_Folder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishantsahoo/ShoppingCart-React-NodeJs-Electron/HEAD/API_Node_Folder/package.json -------------------------------------------------------------------------------- /API_Node_Folder/routes/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishantsahoo/ShoppingCart-React-NodeJs-Electron/HEAD/API_Node_Folder/routes/cart.js -------------------------------------------------------------------------------- /API_Node_Folder/routes/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishantsahoo/ShoppingCart-React-NodeJs-Electron/HEAD/API_Node_Folder/routes/products.js -------------------------------------------------------------------------------- /API_Node_Folder/seedProductsTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishantsahoo/ShoppingCart-React-NodeJs-Electron/HEAD/API_Node_Folder/seedProductsTable.js -------------------------------------------------------------------------------- /API_Node_Folder/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishantsahoo/ShoppingCart-React-NodeJs-Electron/HEAD/API_Node_Folder/server.js -------------------------------------------------------------------------------- /Front_End_React_Folder/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets" : ["env", "react"] 3 | } 4 | -------------------------------------------------------------------------------- /Front_End_React_Folder/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishantsahoo/ShoppingCart-React-NodeJs-Electron/HEAD/Front_End_React_Folder/.eslintrc.js -------------------------------------------------------------------------------- /Front_End_React_Folder/express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishantsahoo/ShoppingCart-React-NodeJs-Electron/HEAD/Front_End_React_Folder/express.js -------------------------------------------------------------------------------- /Front_End_React_Folder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishantsahoo/ShoppingCart-React-NodeJs-Electron/HEAD/Front_End_React_Folder/package.json -------------------------------------------------------------------------------- /Front_End_React_Folder/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishantsahoo/ShoppingCart-React-NodeJs-Electron/HEAD/Front_End_React_Folder/server.js -------------------------------------------------------------------------------- /Front_End_React_Folder/src/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishantsahoo/ShoppingCart-React-NodeJs-Electron/HEAD/Front_End_React_Folder/src/app.jsx -------------------------------------------------------------------------------- /Front_End_React_Folder/src/components/Cart/cartTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishantsahoo/ShoppingCart-React-NodeJs-Electron/HEAD/Front_End_React_Folder/src/components/Cart/cartTable.jsx -------------------------------------------------------------------------------- /Front_End_React_Folder/src/components/Products/productsRow.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishantsahoo/ShoppingCart-React-NodeJs-Electron/HEAD/Front_End_React_Folder/src/components/Products/productsRow.jsx -------------------------------------------------------------------------------- /Front_End_React_Folder/src/components/Products/productsTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishantsahoo/ShoppingCart-React-NodeJs-Electron/HEAD/Front_End_React_Folder/src/components/Products/productsTable.jsx -------------------------------------------------------------------------------- /Front_End_React_Folder/static/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishantsahoo/ShoppingCart-React-NodeJs-Electron/HEAD/Front_End_React_Folder/static/bundle.js -------------------------------------------------------------------------------- /Front_End_React_Folder/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishantsahoo/ShoppingCart-React-NodeJs-Electron/HEAD/Front_End_React_Folder/static/index.html -------------------------------------------------------------------------------- /Front_End_React_Folder/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishantsahoo/ShoppingCart-React-NodeJs-Electron/HEAD/Front_End_React_Folder/static/style.css -------------------------------------------------------------------------------- /Front_End_React_Folder/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishantsahoo/ShoppingCart-React-NodeJs-Electron/HEAD/Front_End_React_Folder/webpack.config.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nishantsahoo/ShoppingCart-React-NodeJs-Electron/HEAD/README.md --------------------------------------------------------------------------------