Upload Image Using AJAX In Node
          Introduction  In this blog we see how we can upload image file using ajax.Here we be using FileReader  for reading the selected file and then we send that file data to server side using ajax and on server side we read and save that as image on server.      Project Structure           Setup Folder   Open the command prompt and create new folder using following command     mkdir upload    Now change   to the newly created folder by using folder command    cd upload      Setup Node In Folder   Now we have to setup node environment in the folder for our project.   We have to use the below command to setup node in our folder    npm init -y    This command will create a package.json file which indicates that node is initialized in folder.    The package.json file will look like this                    Install Packages      Now we have to install the package required for building the application.      For installing packages we use npm install  followed by package name.    ...