Select Items move items between buckets to and fro.
Demo: https://raw.githack.com/avaneeshtripathi/React-bucketProblem/master/Solution/index.html
How to Run
- Go to the solution folder.
- Build is already done, find "index.html" and run in browser.
Installation Dependencies:
- NodeJS (version 5.12)
- NPM (version 3.8.6)
Project Setup Guide:
- Install NodeJs with npm.
- Go to a folder and run command "npm init" and follow the steps to create "package.json" file.
- Run the following commands to install core dependencies
- npm install react react-dom --save
- npm install babel-core babel-loader webpack --save
- npm install babel-preset-es2015 babel-preset-react --save
- Create "webpack.config.js" file and set entry and output path for main js file.
- Run the following commands to install additional dependencies:
- npm install serialize --save
- npm install underscore --save
Package Usage:
- npm is used as a build tool.
- react is used as a JavaScript Library to write code.
- babel is used to compile React and ES6 scripts.
- serialize is used to read form data.
- underscore is used to perform operations on arrays and objects.