まず第一に、私はnode.jsとWebサービスに非常に慣れていません。
openweather.org APIから温度を取得し、その結果をHTTPで提供する必要があるものに取り組んでいます。
APIは
http://api.openweathermap.org/data/2.1/find/name?q=London
そして、都市名、気温、学位を次の形式のHTMLで保存したいと思います。
<!DOCTYPE html>
<html>
<head>
<title>Something</title>
</head>
<body>
<h1>Current Weather</h1>
<hr/>
<strong id="city">{{city}}</strong>
<span id="temperature">{{temperature}}</span>
<span id="unit">{{unit}}</span>
<hr/>
<small>last update: <span id="lastupdate">{{datetime}}</span></small>
</body>
</html>
どうやってやるの?どんな助けでも。