Skip to content

Instantly share code, notes, and snippets.

View Mauro2's full-sized avatar

Mauro Gandelli Mauro2

  • Buenos Aires, Argentina
View GitHub Profile
@Mauro2
Mauro2 / function.js
Created April 3, 2017 12:28
Azure Functions - Meetup Example
var request = require('request-promise');
var azure = require('azure-storage')
module.exports = function (context, data) {
context.log('Foto a procesar: ' + data.url);
analizarImagen(data.url)
.then(notificarIFTTT)
.then(subirBlobStorage);