felixge / felixge/nodeguide.com
typo in node beginner's guide (s/data/req)
Aperta
- Lingua principale
- CSS
- Stelle
- 368
- Fork
- 40
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Descrizione
In first example under EventEmitters:
```
var data = '';
req
.on('data', function(chunk) {
data += chunk;
})
.on('end', function() {
console.log('POST data: %s', data);
})
```
Shouldn't that first line be a declaration of 'req' not 'data'?
thanks for the helpful docs!
Guida per i contributori
Nessuna guida per i contributori indicizzata per questo repository
Valutazione
Questa issue non è ancora stata valutata.