1
Fork 0

typescript(fourjs): first commit

Signed-off-by: prescientmoon <git@moonythm.dev>
This commit is contained in:
Matei Adriel 2019-01-17 15:53:12 +02:00 committed by prescientmoon
parent 7dce9eb842
commit c19818b95b
Signed by: prescientmoon
SSH key fingerprint: SHA256:UUF9JT2s8Xfyv76b8ZuVL7XrmimH4o49p4b+iexbVH4
15 changed files with 736 additions and 0 deletions
typescript/fourjs

19
typescript/fourjs/app.js Normal file
View file

@ -0,0 +1,19 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const express = require("express");
const app = express();
const http = require("http").Server(app);
app.get("/", (req, res) => {
res.sendFile(`${__dirname}/public/index.html`);
});
app.use("/public", express.static(__dirname + "/public"));
const port = 8000;
http.listen(port, () => {
console.log(`>>Listeing on port ${port}`);
});
const sender_1 = require("./server/four/sender");
const sender = new sender_1.ShaderSender(app, __dirname);
sender.listen({
vertex: "shaders/vertex.glsl",
fragment: "shaders/fragment.glsl"
});