SlideShare une entreprise Scribd logo
Node.jsエンジニアErlangに入門するの巻
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
Node.jsエンジニアErlangに入門するの巻
• 
• 
• 
http.get('http://www.google.com/index.html', (res) => {
console.log(`Got response: ${res.statusCode}`);
// consume response body
res.resume();
}).on('error', (e) => {
console.log(`Got error: ${e.message}`);
});
app.use(function(err, req, res, next) {
console.error(err.stack);
res.status(500).send('Something broke!');
});
function myFunc() {
throw new Error(“Error”);
}
try {
myFunc();
} catch(err) {
// handle err
}
• 
• 
• 
• 
• 
• 
Node.jsエンジニアErlangに入門するの巻
Node.jsエンジニアErlangに入門するの巻
Node.jsエンジニアErlangに入門するの巻
• 
• 
• 
• 
• 
• 
Node.jsエンジニアErlangに入門するの巻
Node.jsエンジニアErlangに入門するの巻
• 
• 
• 
• 
Node.jsエンジニアErlangに入門するの巻
 
 
Node.jsエンジニアErlangに入門するの巻
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
 
 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
Node.jsエンジニアErlangに入門するの巻
Node.jsエンジニアErlangに入門するの巻
Node.jsエンジニアErlangに入門するの巻

Contenu connexe

Node.jsエンジニアErlangに入門するの巻