1
Fork 0
solar-conflux/typescript/translucid
Matei Adriel 1feb795761
typescript(translucid): noooooooooo
Signed-off-by: prescientmoon <git@moonythm.dev>
2019-01-22 21:54:03 +02:00
..
.gitignore typescript(translucid): testing automated update 2019-01-22 21:11:05 +02:00
app.js typescript(translucid): first commit 2019-01-19 22:41:54 +02:00
LICENSE typescript(translucid): Initial commit 2019-01-19 20:41:18 +02:00
package-lock.json typescript(translucid): 1.0.23 2019-01-22 21:51:22 +02:00
package.json typescript(translucid): 1.0.23 2019-01-22 21:51:22 +02:00
QuickServer.js typescript(translucid): unknown bug 2019-01-22 20:45:32 +02:00
read.js typescript(translucid): idk anymore 2019-01-20 12:45:23 +02:00
README.md typescript(translucid): deprecations 2019-01-20 12:57:11 +02:00
test.js typescript(translucid): fixed the bug 2019-01-22 20:49:50 +02:00
test.ts typescript(translucid): fixed the bug 2019-01-22 20:49:50 +02:00
Translucid.js typescript(translucid): noooooooooo 2019-01-22 21:54:03 +02:00
Translucid.ts typescript(translucid): noooooooooo 2019-01-22 21:54:03 +02:00
tsconfig.json typescript(translucid): typescipited 2019-01-22 20:26:18 +02:00

Translucid

A simple node.js library to bind files to requests

Get started:

First you need to install the package:

npm install translucid --save

Then, you need to include it in your project:

const trans = require("translucid");

To create your first server, call ".QuickServer(port)":

trans.QuickServer(8000);

The ".QuickServer" method return many useful objects:

const {app,server,connect,translucid} = trans.QuickServer(8000);

"Connect" is a promise that resolves when the server starts listening to the port:

connect.then(() => {
    console.log("Listening on port 8000!");
});

The translucid object can be used to make file bindings:

translucid.bind("/","client/index.html",["myId"]);

Then you can add middleware like this:

translucid.use({
    name:"my middleware",
    keys:["myid"],
    run:(prev,req,res,next) => {
        //prev is the data that is going to be sent to the client
        //(it might for example be the index.html file);
        next(`${prev} <br/> string added by a middleware`);
    }
});