I'm trying to figure out how to make an HTTP PUT request with node.js. I've tried a lot of different things, but can't get it working.
The idea is to have a method for putting the file, eg:
function putFile(file_path, callback) {
// Put the file
}
Any help would be appreciated.