Giter Club home page Giter Club logo

exo-5-meteo's Introduction

exo-5-meteo

Utilisation d'une API météo.

Objectifs :

Dans une page afficher les températures pour la journée actuelle pour les endroits suivants : Ile de la Réunion, Paris, Marseille, Moscou.

Utiliser l 'API : www.openweathermap.org

/!\ Obligatoire : nodeJS pour récupérer les informations et les transmetre à votre page.

Exemple pour passer une reponse de requette via une route

    var http    = require('http');
    var request  require('request');

    function getResultat(callback){
        //changer url par l'url de la ressource a recuperer.
        var url = "http://";
        
        //appel de la fonction request
        request(url, function(error, response, body) {
            if (!error && response.statusCode == 200) {
                result = JSON.stringify(JSON.parse(body));
                return callback(null, result);
            } else {
                return callback(error, null);
            }
        });
    }

    app.get('/appel', function(req, res) {
    
        getResultat(function(err, data){
            if(!err){
                    res.send(data);
            }
            else{
                  res.send(err);
            }

        });

    });

exo-5-meteo's People

Contributors

soobik avatar

Watchers

James Cloos avatar  avatar

Forkers

lacazze

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.