var express = require('express');
var http = require('http'),
fs = require('fs');
http.createServer(function(req, res) {
if(req.url == "/") {
fs.readFile("index.html", {encoding: 'utf8'}, function(err, content) {
if(err) throw err;
res.end(content);
});
} else if(req.url.includes('client')) {
fs.readFile("client.js", {encoding: 'utf8'}, function(err, content) {
if(err) throw err;
res.end(content);
});
} else {
res.end("Bad request");
}
}).listen(3000);
class Animal {
private name: string;
constructor(theName: string) { this.name = theName; }
}
new Animal("Cat").name; // Error: 'name' is private;
Есть предположение, что БД после долго не использования закрывает соединение.