5htp-core 0.5.1-92 → 0.5.1-93
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "5htp-core",
|
|
3
3
|
"description": "Convenient TypeScript framework designed for Performance and Productivity.",
|
|
4
|
-
"version": "0.5.1-
|
|
4
|
+
"version": "0.5.1-93",
|
|
5
5
|
"author": "Gaetan Le Gac (https://github.com/gaetanlegac)",
|
|
6
6
|
"repository": "git://github.com/gaetanlegac/5htp-core.git",
|
|
7
7
|
"license": "MIT",
|
|
@@ -206,12 +206,10 @@ export default class HttpServer {
|
|
|
206
206
|
/*----------------------------------
|
|
207
207
|
- BOOT SERVICES
|
|
208
208
|
----------------------------------*/
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
});
|
|
214
|
-
}
|
|
209
|
+
console.info("Lancement du serveur web");
|
|
210
|
+
this.http.listen(this.config.port, () => {
|
|
211
|
+
console.info(`Web server ready on ${this.publicUrl}`);
|
|
212
|
+
});
|
|
215
213
|
|
|
216
214
|
}
|
|
217
215
|
|