typescript(fourjs): first commit
Signed-off-by: prescientmoon <git@moonythm.dev>
This commit is contained in:
parent
7dce9eb842
commit
c19818b95b
15 changed files with 736 additions and 0 deletions
typescript/fourjs
19
typescript/fourjs/app.js
Normal file
19
typescript/fourjs/app.js
Normal 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"
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue