1
Fork 0

typescript(translucid): first commit

Signed-off-by: prescientmoon <git@moonythm.dev>
This commit is contained in:
Matei Adriel 2019-01-19 22:41:54 +02:00 committed by prescientmoon
parent 507091e37f
commit 62b1390b18
Signed by: prescientmoon
SSH key fingerprint: SHA256:UUF9JT2s8Xfyv76b8ZuVL7XrmimH4o49p4b+iexbVH4
8 changed files with 498 additions and 0 deletions
typescript/translucid

View file

@ -0,0 +1,19 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const express = require('express');
const http = require('http');
const Translucid_1 = require("./Translucid");
function QuickServer(port) {
const app = express();
const server = http.Server(app);
const translucid = new Translucid_1.Translucid(app);
return {
express, app, http, server, translucid,
connect: new Promise((resolve, reject) => {
server.listen(port, () => {
resolve("Connected");
});
})
};
}
exports.QuickServer = QuickServer;