Latest commit

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

Faster

A fast and optimized middleware server with an absurdly small amount of code (300 lines) built on top of Deno's native HTTP APIs with no dependencies. It also has a collection of useful middlewares: log file, serve static, CORS, session, rate limit, token, body parsers, redirect, proxy and handle upload. In "README" there are examples of all the resources. Faster's ideology is: all you need is an optimized middleware manager, all other functionality is middleware.

Contents

Benchmarks

The middleware is built on top of Deno's native HTTP APIs, see the benchmarks ('hello word' server):

Machine: 8 GiB, Intel® Core™ i5-10210U CPU @ 2.11GHz × 4

method: autocannon -c 100 -d 40 -p 10 localhost:80. Deno v1.19.3, Ubuntu 20.04 LTS.

FrameworkVersionRouter?Results
Express4.17.3167k requests in 40.11s, 29 MB read
Fastify3.27.41105k requests in 40.07s ,193 MB read
Oak10.4.0260k requests in 40.09s, 45 MB read
Faster5.71432k requests in 40.17s, 250 MB read

Note that in addition to performance, Faster is a very complete framework considering its middleware collection.

Example

Defining routes

Static (/foo, /foo/bar)

Parameter (/:title, /books/:title, /books/:genre/:title)

Parameter w/ Suffix (/movies/:title.mp4, /movies/:title.(mp4|mov))

Optional Parameters (/:title?, /books/:title?, /books/:genre/:title?)

Wildcards (*, /books/*, /books/:genre/*)

POST read and return JSON

import{req,res,Server}from"https://deno.land/x/faster/mod.ts";constserver=newServer();server.post("/example_json",res("json"),req("json"),async(ctx: any,next: any)=>{console.log(ctx.body);ctx.res.body={msg: "json response example"};awaitnext();},);awaitserver.listen({port: 80});

GET return HTML

server.get("/example_html",res("html"),async(ctx: any,next: any)=>{ctx.res.body=` <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>title example</title> </head> </body> HTML body example <body> </html> `;awaitnext();},);

Get URL params

server.get("/example_params/:ex1?foo=bar",async(ctx: any,next: any)=>{console.log(ctx.params.ex1);console.log(ctx.url.searchParams.get("foo"));//you can explore the URL (ctx.url) objectawaitnext();},);

Cookies

import{Cookie,deleteCookie,getCookies,Server,setCookie,}from"https://deno.land/x/faster/mod.ts";//alias to deno stdserver.get("/cookies",async(ctx: any,next: any)=>{setCookie(ctx.res.headers,{name: "user_name",value: "San"});//explore interface 'Cookie' for more optionsdeleteCookie(ctx.res.headers,"last_order");console.log(getCookies(ctx.req.headers));awaitnext();},);

Redirect

server.get("/redirect_example",async(ctx: any,next: any)=>{ctx.redirect("/my_custom_url_or_path");awaitnext();},);

Middleares

This project has a standard set of middleware useful for most cases.

Logger

Example:

server.use(logger());

You can pass custom log file:

logger("./my_dir/my_custom_log.txt");

Body Parsers res and req

Example:

server.post("/example_parsers",res("json"),//Response parserreq("json"),//Request parserasync(ctx: any,next: any)=>{console.log(ctx.body);//the original (no parser) body is in ctx.req.bodyctx.res.body={msg: "json response example"};awaitnext();},);

The current supported options for "req" are: "arrayBuffer", "blob", "formData", "json", "text".

The current supported options for "res" are: "json", "html", "javascript".

If there are no parsers for your data, don't worry, you can handle the data manually, Ex:

server.post("/upload",async(ctx: any,next: any)=>{ctx.res.headers.set("Content-Type","application/json",);constdata=awaitexCustomParseBody(ctx.req.body);//do what you want with ctx.req.bodyctx.res.body=JSON.stringify({msg: "ok"});// //ctx.res.body can also be other data types such as streams, bytes and etc.awaitnext();},);

Rate Limit

Example:

server.use(rateLimit());

OPTIONS (with default values):

rateLimit({attempts: 30,interval: 10,maxTableSize: 100000,id: (ctx: Context)=>JSON.stringify(ctx.conn.remoteAddr),});

Serve Static

Example (must end with "/*"):

server.get("/pub/*",serveStatic("./pub"),);

Set Cors

Example:

server.options("/example_cors",setCORS());//enable pre-fligh requestserver.get("/example_cors",setCORS(),async(ctx,next)=>{awaitnext();},);

You can pass valid hosts to cors function:

setCORS("http://my.custom.url:8080");

Token

This middleware is encapsulated in an entire static class. It uses Bearer Token and default options with the "HS256" algorithm, and generates a random secret when starting the application (you can also set a secret manually). Ex:

server.get("/example_verify_token",//send token to server in Header => Authorization: Bearer TOKENToken.middleware,async(ctx,next)=>{console.log(ctx.extra.tokenPayload);console.log(ctx.extra.token);awaitnext();},);

Generate Token ex:

awaitToken.generate({user_id: "172746"},null);//null to never expire, this parameter defaults to "1h"

Set secret ex:

Token.setSecret("a3d2r366wgb3dh6yrwzw99kzx2");//Do this at the beginning of your application

Get token payload out of middleware:

awaitToken.getPayload("YOUR_TOKEN_STRING");//Ex: use for get token data from token string in URL parameter.

You can also use the static method Token.setConfigs.

Redirect

Ex:

server.get("/my_url_1",redirect("/my_url_2"),//or the full url);

Session

Ex:

server.use(session());//in routes:server.get("/session_example",async(ctx,next)=>{console.log(ctx.extra.session);//get session datactx.extra.session.foo="bar";//set session dataawaitnext();},);

OPTIONS (with default values):

session(engine: SessionStorageEngine = new SQLiteStorageEngine(60)) //60 is 60 minutes to expire session

Proxy

Ex:

server.use(proxy({url: "https://my-url-example.com"}));

In routes:

server.get("/proxy_example",async(ctx,next)=>{console.log(ctx.req);//req has changed as it now points to the proxyconsole.log(ctx.res);//res has changed because now it has the proxy answer//OR if replaceReqAndRes = falseconsole.log(ctx.extra.proxyReq);console.log(ctx.extra.proxyRes);awaitnext();},);

Or proxy in specific route:

server.get("/proxy_example",proxy({url: "https://my-url-example.com/proxy_ex2",replaceProxyPath: false,//specific proxy route for the route "/proxy_example"}),async(ctx,next)=>{console.log(ctx.req);//req has changed as it now points to the proxyconsole.log(ctx.res);//res has changed because now it has the proxy answerawaitnext();},);

Conditional proxy:

server.get("/proxy_example",proxy({url: "https://my-url-example.com/proxy_ex3",condition: (ctx)=>{if(ctx.url.searchParams.get("foo")){returntrue;}else{returnfalse;}},}),async(ctx,next)=>{console.log(ctx.extra.proxied);//will be true if proxy condition is trueconsole.log(ctx.req);//req has changed as it now points to the proxyconsole.log(ctx.res);//res has changed because now it has the proxy answerawaitnext();},);

OPTIONS (with default values):

proxy(url: string, replaceReqAndRes: true, replaceProxyPath: true, condition: : (ctx: Context) => true )

Do not use "res body parsers" with 'replaceReqAndRes: true' (default) !!!

If you don't use Request body information before the proxy or in your condition, don't use "req body parsers" as this will increase the processing cost !!!

Upload

This middleware automatically organizes uploads to avoid file system problems and create dirs if not exists, perform validations and optimizes ram usage when uploading large files using Deno standard libraries!

Upload usage

Ex:

.post("/upload",upload(),async(ctx: any,next: any)=>{ ...

Ex (with custom options):

.post("/upload",upload({path: 'uploads_custom_dir',extensions: ['jpg','png'],maxSizeBytes: 20000000,maxFileSizeBytes: 10000000,saveFile: true,readFile: false,useCurrentDir: true}),async(ctx: any,next: any)=>{ ...

Request must contains a body with form type "multipart/form-data", and inputs with type="file".

Ex (pre validation):

.post("/pre_upload",preUploadValidate(["jpg","png"],20000000,10000000),async(ctx: any,next: any)=>{ ...

Pre validation options:

preUploadValidate(
extensions: Array<string> = [],
maxSizeBytes: number = Number.MAX_SAFE_INTEGER,
maxFileSizeBytes: number = Number.MAX_SAFE_INTEGER,
)

Upload examples in frontend and backend

Below an frontend example to work with AJAX, also accepting type="file" multiple:

varfiles=document.querySelector("#yourFormId input[type=file]").files;varname=document.querySelector("#yourFormId input[type=file]").getAttribute("name",);varform=newFormData();for(vari=0;i<files.length;i++){form.append(`${name}_${i}`,files[i]);}varres=awaitfetch("/upload",{//Fetch API automatically puts the form in the format "multipart/form-data".method: "POST",body: form,}).then((response)=>response.json());console.log(res);//VALIDATIONS --------------varvalidationData={};for(vari=0;i<files.length;i++){varnewObj={//newObj is needed, JSON.stringify(files[i]) not work"name": files[i].name,"size": files[i].size,};validationData[`${name}_${i}`]=newObj;}varvalidations=awaitfetch("/pre_upload",{method: "POST",headers: {"Content-Type": "application/json"},body: JSON.stringify(validationData),}).then((response)=>response.json());console.log(validations);

In Deno (backend):

import{preUploadValidate,res,Server,upload,}from"https://deno.land/x/faster/mod.ts";constserver=newServer();server.post("/upload",res("json"),upload({path: "my_uploads",extensions: ["jpg","png"],maxSizeBytes: 20000000,maxFileSizeBytes: 10000000,}),async(ctx: any,next: any)=>{ctx.res.body=ctx.extra.uploadedFiles;awaitnext();},);server.post("/pre_upload",res("json"),preUploadValidate(["jpg","png"],20000000,10000000),async(ctx: any,next: any)=>{ctx.res.body={msg: "Passed upload validations."};awaitnext();},);server.get("/",res("html"),async(ctx: any,next: any)=>{ctx.res.body=` <form id="yourFormId" enctype="multipart/form-data" action="/upload" method="post"> <input type="file" name="file1" multiple><br> <input type="submit" value="Submit"> </form> `;awaitnext();});awaitserver.listen({port: 80});

All imports

import{Context,ContextResponse,//typeCookie,//type, alias to deno stddeleteCookie,//alias to deno stdgetCookies,//alias to deno stdlogger,NextFunc,//typeParams,//typeparse,preUploadValidate,ProcessorFunc,//typeproxy,rateLimit,redirect,req,res,Route,//typeRouteFn,//typeServer,serveStatic,Session,//typesession,SessionStorageEngine,setCookie,//alias to deno stdsetCORS,SQLiteStorageEngine,Token,upload,}from"https://deno.land/x/faster/mod.ts";

Example Deploy

Example of depoly application "my-deno-app" in ubuntu environment. Change the "my-deno-app" and the directories to yours.

Create service

Create run script ("run-server.sh") in your application folder with the content:

#!/bin/bash
/home/ubuntu/.deno/bin/deno run --allow-net --allow-read --allow-write /home/ubuntu/my-deno-app/app.ts

Give permission to the script:

chmod +x run-server.sh

Create service files:

sudo touch /etc/systemd/system/my-deno-app.servicesudo nano /etc/systemd/system/my-deno-app.service

In "my-deno-app".service (change the "Description", "WorkingDirectory" and "ExecStart" to yours):

[Unit]
Description=My Deno App
[Service]
WorkingDirectory=/home/ubuntu/my-deno-app
ExecStart=/home/ubuntu/my-deno-app/run-server.sh
TimeoutSec=30
Restart=always
RestartSec=1
[Install]
WantedBy=multi-user.target

If your application needs to wait for another service to start, such as the mongodb database, you can use the ´[Unit]´ section like this:

[Unit]
Description=My Deno App
After=mongod.service

Enable the "my-deno-app" service:

sudo systemctl enable my-deno-app.service

To start and stop the "my-deno-app" service:

sudo service my-deno-app stopsudo service my-deno-app start

See log:

journalctl -u my-deno-app.service --since=today -e

Configure HTTPS

Install certbot:

sudo apt install certbot

Generate certificates:

sudo certbot certonly --manual

In your application, to verify the domain you will need something like:

import{Server,serveStatic}from"https://deno.land/x/faster/mod.ts";constserver=newServer();server.get(//verify http://<YOUR_DOMAIN>/.well-known/acme-challenge/<TOKEN>"/.well-known/*",serveStatic("./.well-known"),// ex: create .well-known folder in yor app folder);awaitserver.listen({port: 80});

To run your application on https (Change "yourdomain.link" to your domain):

awaitserver.listen({port: 443,certFile: "/etc/letsencrypt/live/yourdomain.link/fullchain.pem",keyFile: "/etc/letsencrypt/live/yourdomain.link/privkey.pem",});

The certificate is valid for a short period. Set crontab to update automatically. The command 'sudo crontab' opens roots crontab, all commands are executed as sudo. Do like this:

sudo crontab -e

Add to the end of the file (to check and renew if necessary every 12 hours):

0 */12 * * * certbot -q renew --standalone --preferred-challenges=http

Or also to check every 7 days:

0 0 * * 0 certbot -q renew --standalone --preferred-challenges=http

About

Author: Henrique Emanoel Viana, a Brazilian computer scientist, enthusiast of web technologies, cel: +55 (41) 99999-4664. URL: https://sites.google.com/site/henriqueemanoelviana

Improvements and suggestions are welcome!

About

A fast and optimized middleware server with an absurdly small amount of code (300 lines) built on top of Deno's native HTTP APIs with no dependencies. It also has a collection of useful middlewares: log file, serve static, CORS, session, rate limit, token, body parsers, redirect, proxy and handle upload. In "README" there are examples of all the re

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Add copy buttons to all
 blocks\n(function() {\n function addCopyButtons() {\n document.querySelectorAll('pre code').forEach(function(codeBlock) {\n if (codeBlock.parentElement.hasAttribute('data-copy-added')) return;\n codeBlock.parentElement.setAttribute('data-copy-added', 'true');\n \n var btn = document.createElement('button');\n btn.textContent = 'Copy';\n btn.style.cssText = 'position:absolute;top:4px;right:4px;padding:2px 8px;font-size:11px;background:#4ecdc4;border:none;border-radius:4px;color:#1a1a2e;cursor:pointer;opacity:0.7;transition:opacity 0.2s;';\n btn.onmouseover = function() { this.style.opacity = '1'; };\n btn.onmouseout = function() { this.style.opacity = '0.7'; };\n btn.onclick = function() {\n navigator.clipboard.writeText(codeBlock.textContent).then(function() {\n btn.textContent = 'Copied!';\n setTimeout(function() { btn.textContent = 'Copy'; }, 1500);\n });\n };\n codeBlock.parentElement.style.position = 'relative';\n codeBlock.parentElement.appendChild(btn);\n });\n }\n \n addCopyButtons();\n \n // Re-run on dynamic content\n var observer = new MutationObserver(addCopyButtons);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Add Copy Buttons to Code Blocks");
}
} catch(__e) { console.warn('[Userscript:Add Copy Buttons to Code Blocks]', __e); }
})();
(function(){
try {
var __m = "github.com";
var __re = new RegExp('^' + "github\\.com" + '
Skip to content

Latest commit

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

Faster

A fast and optimized middleware server with an absurdly small amount of code (300 lines) built on top of Deno's native HTTP APIs with no dependencies. It also has a collection of useful middlewares: log file, serve static, CORS, session, rate limit, token, body parsers, redirect, proxy and handle upload. In "README" there are examples of all the resources. Faster's ideology is: all you need is an optimized middleware manager, all other functionality is middleware.

Contents

Benchmarks

The middleware is built on top of Deno's native HTTP APIs, see the benchmarks ('hello word' server):

Machine: 8 GiB, Intel® Core™ i5-10210U CPU @ 2.11GHz × 4

method: autocannon -c 100 -d 40 -p 10 localhost:80. Deno v1.19.3, Ubuntu 20.04 LTS.

FrameworkVersionRouter?Results
Express4.17.3167k requests in 40.11s, 29 MB read
Fastify3.27.41105k requests in 40.07s ,193 MB read
Oak10.4.0260k requests in 40.09s, 45 MB read
Faster5.71432k requests in 40.17s, 250 MB read

Note that in addition to performance, Faster is a very complete framework considering its middleware collection.

Example

Defining routes

Static (/foo, /foo/bar)

Parameter (/:title, /books/:title, /books/:genre/:title)

Parameter w/ Suffix (/movies/:title.mp4, /movies/:title.(mp4|mov))

Optional Parameters (/:title?, /books/:title?, /books/:genre/:title?)

Wildcards (*, /books/*, /books/:genre/*)

POST read and return JSON

import{req,res,Server}from"https://deno.land/x/faster/mod.ts";constserver=newServer();server.post("/example_json",res("json"),req("json"),async(ctx: any,next: any)=>{console.log(ctx.body);ctx.res.body={msg: "json response example"};awaitnext();},);awaitserver.listen({port: 80});

GET return HTML

server.get("/example_html",res("html"),async(ctx: any,next: any)=>{ctx.res.body=` <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>title example</title> </head> </body> HTML body example <body> </html> `;awaitnext();},);

Get URL params

server.get("/example_params/:ex1?foo=bar",async(ctx: any,next: any)=>{console.log(ctx.params.ex1);console.log(ctx.url.searchParams.get("foo"));//you can explore the URL (ctx.url) objectawaitnext();},);

Cookies

import{Cookie,deleteCookie,getCookies,Server,setCookie,}from"https://deno.land/x/faster/mod.ts";//alias to deno stdserver.get("/cookies",async(ctx: any,next: any)=>{setCookie(ctx.res.headers,{name: "user_name",value: "San"});//explore interface 'Cookie' for more optionsdeleteCookie(ctx.res.headers,"last_order");console.log(getCookies(ctx.req.headers));awaitnext();},);

Redirect

server.get("/redirect_example",async(ctx: any,next: any)=>{ctx.redirect("/my_custom_url_or_path");awaitnext();},);

Middleares

This project has a standard set of middleware useful for most cases.

Logger

Example:

server.use(logger());

You can pass custom log file:

logger("./my_dir/my_custom_log.txt");

Body Parsers res and req

Example:

server.post("/example_parsers",res("json"),//Response parserreq("json"),//Request parserasync(ctx: any,next: any)=>{console.log(ctx.body);//the original (no parser) body is in ctx.req.bodyctx.res.body={msg: "json response example"};awaitnext();},);

The current supported options for "req" are: "arrayBuffer", "blob", "formData", "json", "text".

The current supported options for "res" are: "json", "html", "javascript".

If there are no parsers for your data, don't worry, you can handle the data manually, Ex:

server.post("/upload",async(ctx: any,next: any)=>{ctx.res.headers.set("Content-Type","application/json",);constdata=awaitexCustomParseBody(ctx.req.body);//do what you want with ctx.req.bodyctx.res.body=JSON.stringify({msg: "ok"});// //ctx.res.body can also be other data types such as streams, bytes and etc.awaitnext();},);

Rate Limit

Example:

server.use(rateLimit());

OPTIONS (with default values):

rateLimit({attempts: 30,interval: 10,maxTableSize: 100000,id: (ctx: Context)=>JSON.stringify(ctx.conn.remoteAddr),});

Serve Static

Example (must end with "/*"):

server.get("/pub/*",serveStatic("./pub"),);

Set Cors

Example:

server.options("/example_cors",setCORS());//enable pre-fligh requestserver.get("/example_cors",setCORS(),async(ctx,next)=>{awaitnext();},);

You can pass valid hosts to cors function:

setCORS("http://my.custom.url:8080");

Token

This middleware is encapsulated in an entire static class. It uses Bearer Token and default options with the "HS256" algorithm, and generates a random secret when starting the application (you can also set a secret manually). Ex:

server.get("/example_verify_token",//send token to server in Header => Authorization: Bearer TOKENToken.middleware,async(ctx,next)=>{console.log(ctx.extra.tokenPayload);console.log(ctx.extra.token);awaitnext();},);

Generate Token ex:

awaitToken.generate({user_id: "172746"},null);//null to never expire, this parameter defaults to "1h"

Set secret ex:

Token.setSecret("a3d2r366wgb3dh6yrwzw99kzx2");//Do this at the beginning of your application

Get token payload out of middleware:

awaitToken.getPayload("YOUR_TOKEN_STRING");//Ex: use for get token data from token string in URL parameter.

You can also use the static method Token.setConfigs.

Redirect

Ex:

server.get("/my_url_1",redirect("/my_url_2"),//or the full url);

Session

Ex:

server.use(session());//in routes:server.get("/session_example",async(ctx,next)=>{console.log(ctx.extra.session);//get session datactx.extra.session.foo="bar";//set session dataawaitnext();},);

OPTIONS (with default values):

session(engine: SessionStorageEngine = new SQLiteStorageEngine(60)) //60 is 60 minutes to expire session

Proxy

Ex:

server.use(proxy({url: "https://my-url-example.com"}));

In routes:

server.get("/proxy_example",async(ctx,next)=>{console.log(ctx.req);//req has changed as it now points to the proxyconsole.log(ctx.res);//res has changed because now it has the proxy answer//OR if replaceReqAndRes = falseconsole.log(ctx.extra.proxyReq);console.log(ctx.extra.proxyRes);awaitnext();},);

Or proxy in specific route:

server.get("/proxy_example",proxy({url: "https://my-url-example.com/proxy_ex2",replaceProxyPath: false,//specific proxy route for the route "/proxy_example"}),async(ctx,next)=>{console.log(ctx.req);//req has changed as it now points to the proxyconsole.log(ctx.res);//res has changed because now it has the proxy answerawaitnext();},);

Conditional proxy:

server.get("/proxy_example",proxy({url: "https://my-url-example.com/proxy_ex3",condition: (ctx)=>{if(ctx.url.searchParams.get("foo")){returntrue;}else{returnfalse;}},}),async(ctx,next)=>{console.log(ctx.extra.proxied);//will be true if proxy condition is trueconsole.log(ctx.req);//req has changed as it now points to the proxyconsole.log(ctx.res);//res has changed because now it has the proxy answerawaitnext();},);

OPTIONS (with default values):

proxy(url: string, replaceReqAndRes: true, replaceProxyPath: true, condition: : (ctx: Context) => true )

Do not use "res body parsers" with 'replaceReqAndRes: true' (default) !!!

If you don't use Request body information before the proxy or in your condition, don't use "req body parsers" as this will increase the processing cost !!!

Upload

This middleware automatically organizes uploads to avoid file system problems and create dirs if not exists, perform validations and optimizes ram usage when uploading large files using Deno standard libraries!

Upload usage

Ex:

.post("/upload",upload(),async(ctx: any,next: any)=>{ ...

Ex (with custom options):

.post("/upload",upload({path: 'uploads_custom_dir',extensions: ['jpg','png'],maxSizeBytes: 20000000,maxFileSizeBytes: 10000000,saveFile: true,readFile: false,useCurrentDir: true}),async(ctx: any,next: any)=>{ ...

Request must contains a body with form type "multipart/form-data", and inputs with type="file".

Ex (pre validation):

.post("/pre_upload",preUploadValidate(["jpg","png"],20000000,10000000),async(ctx: any,next: any)=>{ ...

Pre validation options:

preUploadValidate(
extensions: Array<string> = [],
maxSizeBytes: number = Number.MAX_SAFE_INTEGER,
maxFileSizeBytes: number = Number.MAX_SAFE_INTEGER,
)

Upload examples in frontend and backend

Below an frontend example to work with AJAX, also accepting type="file" multiple:

varfiles=document.querySelector("#yourFormId input[type=file]").files;varname=document.querySelector("#yourFormId input[type=file]").getAttribute("name",);varform=newFormData();for(vari=0;i<files.length;i++){form.append(`${name}_${i}`,files[i]);}varres=awaitfetch("/upload",{//Fetch API automatically puts the form in the format "multipart/form-data".method: "POST",body: form,}).then((response)=>response.json());console.log(res);//VALIDATIONS --------------varvalidationData={};for(vari=0;i<files.length;i++){varnewObj={//newObj is needed, JSON.stringify(files[i]) not work"name": files[i].name,"size": files[i].size,};validationData[`${name}_${i}`]=newObj;}varvalidations=awaitfetch("/pre_upload",{method: "POST",headers: {"Content-Type": "application/json"},body: JSON.stringify(validationData),}).then((response)=>response.json());console.log(validations);

In Deno (backend):

import{preUploadValidate,res,Server,upload,}from"https://deno.land/x/faster/mod.ts";constserver=newServer();server.post("/upload",res("json"),upload({path: "my_uploads",extensions: ["jpg","png"],maxSizeBytes: 20000000,maxFileSizeBytes: 10000000,}),async(ctx: any,next: any)=>{ctx.res.body=ctx.extra.uploadedFiles;awaitnext();},);server.post("/pre_upload",res("json"),preUploadValidate(["jpg","png"],20000000,10000000),async(ctx: any,next: any)=>{ctx.res.body={msg: "Passed upload validations."};awaitnext();},);server.get("/",res("html"),async(ctx: any,next: any)=>{ctx.res.body=` <form id="yourFormId" enctype="multipart/form-data" action="/upload" method="post"> <input type="file" name="file1" multiple><br> <input type="submit" value="Submit"> </form> `;awaitnext();});awaitserver.listen({port: 80});

All imports

import{Context,ContextResponse,//typeCookie,//type, alias to deno stddeleteCookie,//alias to deno stdgetCookies,//alias to deno stdlogger,NextFunc,//typeParams,//typeparse,preUploadValidate,ProcessorFunc,//typeproxy,rateLimit,redirect,req,res,Route,//typeRouteFn,//typeServer,serveStatic,Session,//typesession,SessionStorageEngine,setCookie,//alias to deno stdsetCORS,SQLiteStorageEngine,Token,upload,}from"https://deno.land/x/faster/mod.ts";

Example Deploy

Example of depoly application "my-deno-app" in ubuntu environment. Change the "my-deno-app" and the directories to yours.

Create service

Create run script ("run-server.sh") in your application folder with the content:

#!/bin/bash
/home/ubuntu/.deno/bin/deno run --allow-net --allow-read --allow-write /home/ubuntu/my-deno-app/app.ts

Give permission to the script:

chmod +x run-server.sh

Create service files:

sudo touch /etc/systemd/system/my-deno-app.servicesudo nano /etc/systemd/system/my-deno-app.service

In "my-deno-app".service (change the "Description", "WorkingDirectory" and "ExecStart" to yours):

[Unit]
Description=My Deno App
[Service]
WorkingDirectory=/home/ubuntu/my-deno-app
ExecStart=/home/ubuntu/my-deno-app/run-server.sh
TimeoutSec=30
Restart=always
RestartSec=1
[Install]
WantedBy=multi-user.target

If your application needs to wait for another service to start, such as the mongodb database, you can use the ´[Unit]´ section like this:

[Unit]
Description=My Deno App
After=mongod.service

Enable the "my-deno-app" service:

sudo systemctl enable my-deno-app.service

To start and stop the "my-deno-app" service:

sudo service my-deno-app stopsudo service my-deno-app start

See log:

journalctl -u my-deno-app.service --since=today -e

Configure HTTPS

Install certbot:

sudo apt install certbot

Generate certificates:

sudo certbot certonly --manual

In your application, to verify the domain you will need something like:

import{Server,serveStatic}from"https://deno.land/x/faster/mod.ts";constserver=newServer();server.get(//verify http://<YOUR_DOMAIN>/.well-known/acme-challenge/<TOKEN>"/.well-known/*",serveStatic("./.well-known"),// ex: create .well-known folder in yor app folder);awaitserver.listen({port: 80});

To run your application on https (Change "yourdomain.link" to your domain):

awaitserver.listen({port: 443,certFile: "/etc/letsencrypt/live/yourdomain.link/fullchain.pem",keyFile: "/etc/letsencrypt/live/yourdomain.link/privkey.pem",});

The certificate is valid for a short period. Set crontab to update automatically. The command 'sudo crontab' opens roots crontab, all commands are executed as sudo. Do like this:

sudo crontab -e

Add to the end of the file (to check and renew if necessary every 12 hours):

0 */12 * * * certbot -q renew --standalone --preferred-challenges=http

Or also to check every 7 days:

0 0 * * 0 certbot -q renew --standalone --preferred-challenges=http

About

Author: Henrique Emanoel Viana, a Brazilian computer scientist, enthusiast of web technologies, cel: +55 (41) 99999-4664. URL: https://sites.google.com/site/henriqueemanoelviana

Improvements and suggestions are welcome!

About

A fast and optimized middleware server with an absurdly small amount of code (300 lines) built on top of Deno's native HTTP APIs with no dependencies. It also has a collection of useful middlewares: log file, serve static, CORS, session, rate limit, token, body parsers, redirect, proxy and handle upload. In "README" there are examples of all the re

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Force GitHub README to respect dark mode\n(function() {\n var style = document.createElement('style');\n style.textContent = '\n .markdown-body {\n color-scheme: dark light;\n }\n .markdown-body pre { background: #161b22 !important; }\n .markdown-body code { background: rgba(110, 118, 129, 0.4) !important; }\n .markdown-body table th, .markdown-body table td { border-color: #30363d !important; }\n .markdown-body img { background: #0d1117; }\n .markdown-body blockquote { border-left-color: #8b949e; }\n .markdown-body hr { border-color: #30363d; }\n ';\n document.head.appendChild(style);\n})();", "GitHub Dark Mode README Fix"); } } catch(__e) { console.warn('[Userscript:GitHub Dark Mode README Fix]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

Latest commit

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

Faster

A fast and optimized middleware server with an absurdly small amount of code (300 lines) built on top of Deno's native HTTP APIs with no dependencies. It also has a collection of useful middlewares: log file, serve static, CORS, session, rate limit, token, body parsers, redirect, proxy and handle upload. In "README" there are examples of all the resources. Faster's ideology is: all you need is an optimized middleware manager, all other functionality is middleware.

Contents

Benchmarks

The middleware is built on top of Deno's native HTTP APIs, see the benchmarks ('hello word' server):

Machine: 8 GiB, Intel® Core™ i5-10210U CPU @ 2.11GHz × 4

method: autocannon -c 100 -d 40 -p 10 localhost:80. Deno v1.19.3, Ubuntu 20.04 LTS.

FrameworkVersionRouter?Results
Express4.17.3167k requests in 40.11s, 29 MB read
Fastify3.27.41105k requests in 40.07s ,193 MB read
Oak10.4.0260k requests in 40.09s, 45 MB read
Faster5.71432k requests in 40.17s, 250 MB read

Note that in addition to performance, Faster is a very complete framework considering its middleware collection.

Example

Defining routes

Static (/foo, /foo/bar)

Parameter (/:title, /books/:title, /books/:genre/:title)

Parameter w/ Suffix (/movies/:title.mp4, /movies/:title.(mp4|mov))

Optional Parameters (/:title?, /books/:title?, /books/:genre/:title?)

Wildcards (*, /books/*, /books/:genre/*)

POST read and return JSON

import{req,res,Server}from"https://deno.land/x/faster/mod.ts";constserver=newServer();server.post("/example_json",res("json"),req("json"),async(ctx: any,next: any)=>{console.log(ctx.body);ctx.res.body={msg: "json response example"};awaitnext();},);awaitserver.listen({port: 80});

GET return HTML

server.get("/example_html",res("html"),async(ctx: any,next: any)=>{ctx.res.body=` <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>title example</title> </head> </body> HTML body example <body> </html> `;awaitnext();},);

Get URL params

server.get("/example_params/:ex1?foo=bar",async(ctx: any,next: any)=>{console.log(ctx.params.ex1);console.log(ctx.url.searchParams.get("foo"));//you can explore the URL (ctx.url) objectawaitnext();},);

Cookies

import{Cookie,deleteCookie,getCookies,Server,setCookie,}from"https://deno.land/x/faster/mod.ts";//alias to deno stdserver.get("/cookies",async(ctx: any,next: any)=>{setCookie(ctx.res.headers,{name: "user_name",value: "San"});//explore interface 'Cookie' for more optionsdeleteCookie(ctx.res.headers,"last_order");console.log(getCookies(ctx.req.headers));awaitnext();},);

Redirect

server.get("/redirect_example",async(ctx: any,next: any)=>{ctx.redirect("/my_custom_url_or_path");awaitnext();},);

Middleares

This project has a standard set of middleware useful for most cases.

Logger

Example:

server.use(logger());

You can pass custom log file:

logger("./my_dir/my_custom_log.txt");

Body Parsers res and req

Example:

server.post("/example_parsers",res("json"),//Response parserreq("json"),//Request parserasync(ctx: any,next: any)=>{console.log(ctx.body);//the original (no parser) body is in ctx.req.bodyctx.res.body={msg: "json response example"};awaitnext();},);

The current supported options for "req" are: "arrayBuffer", "blob", "formData", "json", "text".

The current supported options for "res" are: "json", "html", "javascript".

If there are no parsers for your data, don't worry, you can handle the data manually, Ex:

server.post("/upload",async(ctx: any,next: any)=>{ctx.res.headers.set("Content-Type","application/json",);constdata=awaitexCustomParseBody(ctx.req.body);//do what you want with ctx.req.bodyctx.res.body=JSON.stringify({msg: "ok"});// //ctx.res.body can also be other data types such as streams, bytes and etc.awaitnext();},);

Rate Limit

Example:

server.use(rateLimit());

OPTIONS (with default values):

rateLimit({attempts: 30,interval: 10,maxTableSize: 100000,id: (ctx: Context)=>JSON.stringify(ctx.conn.remoteAddr),});

Serve Static

Example (must end with "/*"):

server.get("/pub/*",serveStatic("./pub"),);

Set Cors

Example:

server.options("/example_cors",setCORS());//enable pre-fligh requestserver.get("/example_cors",setCORS(),async(ctx,next)=>{awaitnext();},);

You can pass valid hosts to cors function:

setCORS("http://my.custom.url:8080");

Token

This middleware is encapsulated in an entire static class. It uses Bearer Token and default options with the "HS256" algorithm, and generates a random secret when starting the application (you can also set a secret manually). Ex:

server.get("/example_verify_token",//send token to server in Header => Authorization: Bearer TOKENToken.middleware,async(ctx,next)=>{console.log(ctx.extra.tokenPayload);console.log(ctx.extra.token);awaitnext();},);

Generate Token ex:

awaitToken.generate({user_id: "172746"},null);//null to never expire, this parameter defaults to "1h"

Set secret ex:

Token.setSecret("a3d2r366wgb3dh6yrwzw99kzx2");//Do this at the beginning of your application

Get token payload out of middleware:

awaitToken.getPayload("YOUR_TOKEN_STRING");//Ex: use for get token data from token string in URL parameter.

You can also use the static method Token.setConfigs.

Redirect

Ex:

server.get("/my_url_1",redirect("/my_url_2"),//or the full url);

Session

Ex:

server.use(session());//in routes:server.get("/session_example",async(ctx,next)=>{console.log(ctx.extra.session);//get session datactx.extra.session.foo="bar";//set session dataawaitnext();},);

OPTIONS (with default values):

session(engine: SessionStorageEngine = new SQLiteStorageEngine(60)) //60 is 60 minutes to expire session

Proxy

Ex:

server.use(proxy({url: "https://my-url-example.com"}));

In routes:

server.get("/proxy_example",async(ctx,next)=>{console.log(ctx.req);//req has changed as it now points to the proxyconsole.log(ctx.res);//res has changed because now it has the proxy answer//OR if replaceReqAndRes = falseconsole.log(ctx.extra.proxyReq);console.log(ctx.extra.proxyRes);awaitnext();},);

Or proxy in specific route:

server.get("/proxy_example",proxy({url: "https://my-url-example.com/proxy_ex2",replaceProxyPath: false,//specific proxy route for the route "/proxy_example"}),async(ctx,next)=>{console.log(ctx.req);//req has changed as it now points to the proxyconsole.log(ctx.res);//res has changed because now it has the proxy answerawaitnext();},);

Conditional proxy:

server.get("/proxy_example",proxy({url: "https://my-url-example.com/proxy_ex3",condition: (ctx)=>{if(ctx.url.searchParams.get("foo")){returntrue;}else{returnfalse;}},}),async(ctx,next)=>{console.log(ctx.extra.proxied);//will be true if proxy condition is trueconsole.log(ctx.req);//req has changed as it now points to the proxyconsole.log(ctx.res);//res has changed because now it has the proxy answerawaitnext();},);

OPTIONS (with default values):

proxy(url: string, replaceReqAndRes: true, replaceProxyPath: true, condition: : (ctx: Context) => true )

Do not use "res body parsers" with 'replaceReqAndRes: true' (default) !!!

If you don't use Request body information before the proxy or in your condition, don't use "req body parsers" as this will increase the processing cost !!!

Upload

This middleware automatically organizes uploads to avoid file system problems and create dirs if not exists, perform validations and optimizes ram usage when uploading large files using Deno standard libraries!

Upload usage

Ex:

.post("/upload",upload(),async(ctx: any,next: any)=>{ ...

Ex (with custom options):

.post("/upload",upload({path: 'uploads_custom_dir',extensions: ['jpg','png'],maxSizeBytes: 20000000,maxFileSizeBytes: 10000000,saveFile: true,readFile: false,useCurrentDir: true}),async(ctx: any,next: any)=>{ ...

Request must contains a body with form type "multipart/form-data", and inputs with type="file".

Ex (pre validation):

.post("/pre_upload",preUploadValidate(["jpg","png"],20000000,10000000),async(ctx: any,next: any)=>{ ...

Pre validation options:

preUploadValidate(
extensions: Array<string> = [],
maxSizeBytes: number = Number.MAX_SAFE_INTEGER,
maxFileSizeBytes: number = Number.MAX_SAFE_INTEGER,
)

Upload examples in frontend and backend

Below an frontend example to work with AJAX, also accepting type="file" multiple:

varfiles=document.querySelector("#yourFormId input[type=file]").files;varname=document.querySelector("#yourFormId input[type=file]").getAttribute("name",);varform=newFormData();for(vari=0;i<files.length;i++){form.append(`${name}_${i}`,files[i]);}varres=awaitfetch("/upload",{//Fetch API automatically puts the form in the format "multipart/form-data".method: "POST",body: form,}).then((response)=>response.json());console.log(res);//VALIDATIONS --------------varvalidationData={};for(vari=0;i<files.length;i++){varnewObj={//newObj is needed, JSON.stringify(files[i]) not work"name": files[i].name,"size": files[i].size,};validationData[`${name}_${i}`]=newObj;}varvalidations=awaitfetch("/pre_upload",{method: "POST",headers: {"Content-Type": "application/json"},body: JSON.stringify(validationData),}).then((response)=>response.json());console.log(validations);

In Deno (backend):

import{preUploadValidate,res,Server,upload,}from"https://deno.land/x/faster/mod.ts";constserver=newServer();server.post("/upload",res("json"),upload({path: "my_uploads",extensions: ["jpg","png"],maxSizeBytes: 20000000,maxFileSizeBytes: 10000000,}),async(ctx: any,next: any)=>{ctx.res.body=ctx.extra.uploadedFiles;awaitnext();},);server.post("/pre_upload",res("json"),preUploadValidate(["jpg","png"],20000000,10000000),async(ctx: any,next: any)=>{ctx.res.body={msg: "Passed upload validations."};awaitnext();},);server.get("/",res("html"),async(ctx: any,next: any)=>{ctx.res.body=` <form id="yourFormId" enctype="multipart/form-data" action="/upload" method="post"> <input type="file" name="file1" multiple><br> <input type="submit" value="Submit"> </form> `;awaitnext();});awaitserver.listen({port: 80});

All imports

import{Context,ContextResponse,//typeCookie,//type, alias to deno stddeleteCookie,//alias to deno stdgetCookies,//alias to deno stdlogger,NextFunc,//typeParams,//typeparse,preUploadValidate,ProcessorFunc,//typeproxy,rateLimit,redirect,req,res,Route,//typeRouteFn,//typeServer,serveStatic,Session,//typesession,SessionStorageEngine,setCookie,//alias to deno stdsetCORS,SQLiteStorageEngine,Token,upload,}from"https://deno.land/x/faster/mod.ts";

Example Deploy

Example of depoly application "my-deno-app" in ubuntu environment. Change the "my-deno-app" and the directories to yours.

Create service

Create run script ("run-server.sh") in your application folder with the content:

#!/bin/bash
/home/ubuntu/.deno/bin/deno run --allow-net --allow-read --allow-write /home/ubuntu/my-deno-app/app.ts

Give permission to the script:

chmod +x run-server.sh

Create service files:

sudo touch /etc/systemd/system/my-deno-app.servicesudo nano /etc/systemd/system/my-deno-app.service

In "my-deno-app".service (change the "Description", "WorkingDirectory" and "ExecStart" to yours):

[Unit]
Description=My Deno App
[Service]
WorkingDirectory=/home/ubuntu/my-deno-app
ExecStart=/home/ubuntu/my-deno-app/run-server.sh
TimeoutSec=30
Restart=always
RestartSec=1
[Install]
WantedBy=multi-user.target

If your application needs to wait for another service to start, such as the mongodb database, you can use the ´[Unit]´ section like this:

[Unit]
Description=My Deno App
After=mongod.service

Enable the "my-deno-app" service:

sudo systemctl enable my-deno-app.service

To start and stop the "my-deno-app" service:

sudo service my-deno-app stopsudo service my-deno-app start

See log:

journalctl -u my-deno-app.service --since=today -e

Configure HTTPS

Install certbot:

sudo apt install certbot

Generate certificates:

sudo certbot certonly --manual

In your application, to verify the domain you will need something like:

import{Server,serveStatic}from"https://deno.land/x/faster/mod.ts";constserver=newServer();server.get(//verify http://<YOUR_DOMAIN>/.well-known/acme-challenge/<TOKEN>"/.well-known/*",serveStatic("./.well-known"),// ex: create .well-known folder in yor app folder);awaitserver.listen({port: 80});

To run your application on https (Change "yourdomain.link" to your domain):

awaitserver.listen({port: 443,certFile: "/etc/letsencrypt/live/yourdomain.link/fullchain.pem",keyFile: "/etc/letsencrypt/live/yourdomain.link/privkey.pem",});

The certificate is valid for a short period. Set crontab to update automatically. The command 'sudo crontab' opens roots crontab, all commands are executed as sudo. Do like this:

sudo crontab -e

Add to the end of the file (to check and renew if necessary every 12 hours):

0 */12 * * * certbot -q renew --standalone --preferred-challenges=http

Or also to check every 7 days:

0 0 * * 0 certbot -q renew --standalone --preferred-challenges=http

About

Author: Henrique Emanoel Viana, a Brazilian computer scientist, enthusiast of web technologies, cel: +55 (41) 99999-4664. URL: https://sites.google.com/site/henriqueemanoelviana

Improvements and suggestions are welcome!

About

A fast and optimized middleware server with an absurdly small amount of code (300 lines) built on top of Deno's native HTTP APIs with no dependencies. It also has a collection of useful middlewares: log file, serve static, CORS, session, rate limit, token, body parsers, redirect, proxy and handle upload. In "README" there are examples of all the re

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Highlight search terms from Google/DuckDuckGo/Bing referrer\n(function() {\n var ref = document.referrer;\n var terms = [];\n \n if (ref.includes('google.com') || ref.includes('duckduckgo.com') || ref.includes('bing.com')) {\n var url = new URL(ref);\n var q = url.searchParams.get('q') || url.searchParams.get('p');\n if (q) {\n terms = q.split(/\\s+/).filter(function(t) { return t.length > 2; });\n }\n }\n \n if (terms.length === 0) return;\n \n var style = document.createElement('style');\n style.textContent = '.userscript-highlight { background: #fbbf24; color: #1a1a2e; padding: 1px 3px; border-radius: 2px; }';\n document.head.appendChild(style);\n \n function highlight(node) {\n if (node.nodeType === 3) { // text node\n var text = node.textContent;\n var found = false;\n terms.forEach(function(term) {\n var regex = new RegExp('(' + term.replace(/[.*+?^${}()|[\\]\\\\]/g, '\\\\') + ')', 'gi');\n if (regex.test(text)) {\n found = true;\n var frag = document.createDocumentFragment();\n var parts = text.split(regex);\n parts.forEach(function(part, i) {\n if (i % 2 === 0) {\n frag.appendChild(document.createTextNode(part));\n } else {\n var span = document.createElement('span');\n span.className = 'userscript-highlight';\n span.textContent = part;\n frag.appendChild(span);\n }\n });\n node.parentNode.replaceChild(frag, node);\n }\n });\n } else if (node.nodeType === 1 && node.childNodes) { // element\n var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT'];\n if (!skipTags.includes(node.tagName)) {\n Array.from(node.childNodes).forEach(highlight);\n }\n }\n }\n \n highlight(document.body);\n \n // Re-highlight on dynamic content\n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1 || node.nodeType === 3) highlight(node);\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Highlight Search Terms"); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

Latest commit

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

Faster

A fast and optimized middleware server with an absurdly small amount of code (300 lines) built on top of Deno's native HTTP APIs with no dependencies. It also has a collection of useful middlewares: log file, serve static, CORS, session, rate limit, token, body parsers, redirect, proxy and handle upload. In "README" there are examples of all the resources. Faster's ideology is: all you need is an optimized middleware manager, all other functionality is middleware.

Contents

Benchmarks

The middleware is built on top of Deno's native HTTP APIs, see the benchmarks ('hello word' server):

Machine: 8 GiB, Intel® Core™ i5-10210U CPU @ 2.11GHz × 4

method: autocannon -c 100 -d 40 -p 10 localhost:80. Deno v1.19.3, Ubuntu 20.04 LTS.

FrameworkVersionRouter?Results
Express4.17.3167k requests in 40.11s, 29 MB read
Fastify3.27.41105k requests in 40.07s ,193 MB read
Oak10.4.0260k requests in 40.09s, 45 MB read
Faster5.71432k requests in 40.17s, 250 MB read

Note that in addition to performance, Faster is a very complete framework considering its middleware collection.

Example

Defining routes

Static (/foo, /foo/bar)

Parameter (/:title, /books/:title, /books/:genre/:title)

Parameter w/ Suffix (/movies/:title.mp4, /movies/:title.(mp4|mov))

Optional Parameters (/:title?, /books/:title?, /books/:genre/:title?)

Wildcards (*, /books/*, /books/:genre/*)

POST read and return JSON

import{req,res,Server}from"https://deno.land/x/faster/mod.ts";constserver=newServer();server.post("/example_json",res("json"),req("json"),async(ctx: any,next: any)=>{console.log(ctx.body);ctx.res.body={msg: "json response example"};awaitnext();},);awaitserver.listen({port: 80});

GET return HTML

server.get("/example_html",res("html"),async(ctx: any,next: any)=>{ctx.res.body=` <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>title example</title> </head> </body> HTML body example <body> </html> `;awaitnext();},);

Get URL params

server.get("/example_params/:ex1?foo=bar",async(ctx: any,next: any)=>{console.log(ctx.params.ex1);console.log(ctx.url.searchParams.get("foo"));//you can explore the URL (ctx.url) objectawaitnext();},);

Cookies

import{Cookie,deleteCookie,getCookies,Server,setCookie,}from"https://deno.land/x/faster/mod.ts";//alias to deno stdserver.get("/cookies",async(ctx: any,next: any)=>{setCookie(ctx.res.headers,{name: "user_name",value: "San"});//explore interface 'Cookie' for more optionsdeleteCookie(ctx.res.headers,"last_order");console.log(getCookies(ctx.req.headers));awaitnext();},);

Redirect

server.get("/redirect_example",async(ctx: any,next: any)=>{ctx.redirect("/my_custom_url_or_path");awaitnext();},);

Middleares

This project has a standard set of middleware useful for most cases.

Logger

Example:

server.use(logger());

You can pass custom log file:

logger("./my_dir/my_custom_log.txt");

Body Parsers res and req

Example:

server.post("/example_parsers",res("json"),//Response parserreq("json"),//Request parserasync(ctx: any,next: any)=>{console.log(ctx.body);//the original (no parser) body is in ctx.req.bodyctx.res.body={msg: "json response example"};awaitnext();},);

The current supported options for "req" are: "arrayBuffer", "blob", "formData", "json", "text".

The current supported options for "res" are: "json", "html", "javascript".

If there are no parsers for your data, don't worry, you can handle the data manually, Ex:

server.post("/upload",async(ctx: any,next: any)=>{ctx.res.headers.set("Content-Type","application/json",);constdata=awaitexCustomParseBody(ctx.req.body);//do what you want with ctx.req.bodyctx.res.body=JSON.stringify({msg: "ok"});// //ctx.res.body can also be other data types such as streams, bytes and etc.awaitnext();},);

Rate Limit

Example:

server.use(rateLimit());

OPTIONS (with default values):

rateLimit({attempts: 30,interval: 10,maxTableSize: 100000,id: (ctx: Context)=>JSON.stringify(ctx.conn.remoteAddr),});

Serve Static

Example (must end with "/*"):

server.get("/pub/*",serveStatic("./pub"),);

Set Cors

Example:

server.options("/example_cors",setCORS());//enable pre-fligh requestserver.get("/example_cors",setCORS(),async(ctx,next)=>{awaitnext();},);

You can pass valid hosts to cors function:

setCORS("http://my.custom.url:8080");

Token

This middleware is encapsulated in an entire static class. It uses Bearer Token and default options with the "HS256" algorithm, and generates a random secret when starting the application (you can also set a secret manually). Ex:

server.get("/example_verify_token",//send token to server in Header => Authorization: Bearer TOKENToken.middleware,async(ctx,next)=>{console.log(ctx.extra.tokenPayload);console.log(ctx.extra.token);awaitnext();},);

Generate Token ex:

awaitToken.generate({user_id: "172746"},null);//null to never expire, this parameter defaults to "1h"

Set secret ex:

Token.setSecret("a3d2r366wgb3dh6yrwzw99kzx2");//Do this at the beginning of your application

Get token payload out of middleware:

awaitToken.getPayload("YOUR_TOKEN_STRING");//Ex: use for get token data from token string in URL parameter.

You can also use the static method Token.setConfigs.

Redirect

Ex:

server.get("/my_url_1",redirect("/my_url_2"),//or the full url);

Session

Ex:

server.use(session());//in routes:server.get("/session_example",async(ctx,next)=>{console.log(ctx.extra.session);//get session datactx.extra.session.foo="bar";//set session dataawaitnext();},);

OPTIONS (with default values):

session(engine: SessionStorageEngine = new SQLiteStorageEngine(60)) //60 is 60 minutes to expire session

Proxy

Ex:

server.use(proxy({url: "https://my-url-example.com"}));

In routes:

server.get("/proxy_example",async(ctx,next)=>{console.log(ctx.req);//req has changed as it now points to the proxyconsole.log(ctx.res);//res has changed because now it has the proxy answer//OR if replaceReqAndRes = falseconsole.log(ctx.extra.proxyReq);console.log(ctx.extra.proxyRes);awaitnext();},);

Or proxy in specific route:

server.get("/proxy_example",proxy({url: "https://my-url-example.com/proxy_ex2",replaceProxyPath: false,//specific proxy route for the route "/proxy_example"}),async(ctx,next)=>{console.log(ctx.req);//req has changed as it now points to the proxyconsole.log(ctx.res);//res has changed because now it has the proxy answerawaitnext();},);

Conditional proxy:

server.get("/proxy_example",proxy({url: "https://my-url-example.com/proxy_ex3",condition: (ctx)=>{if(ctx.url.searchParams.get("foo")){returntrue;}else{returnfalse;}},}),async(ctx,next)=>{console.log(ctx.extra.proxied);//will be true if proxy condition is trueconsole.log(ctx.req);//req has changed as it now points to the proxyconsole.log(ctx.res);//res has changed because now it has the proxy answerawaitnext();},);

OPTIONS (with default values):

proxy(url: string, replaceReqAndRes: true, replaceProxyPath: true, condition: : (ctx: Context) => true )

Do not use "res body parsers" with 'replaceReqAndRes: true' (default) !!!

If you don't use Request body information before the proxy or in your condition, don't use "req body parsers" as this will increase the processing cost !!!

Upload

This middleware automatically organizes uploads to avoid file system problems and create dirs if not exists, perform validations and optimizes ram usage when uploading large files using Deno standard libraries!

Upload usage

Ex:

.post("/upload",upload(),async(ctx: any,next: any)=>{ ...

Ex (with custom options):

.post("/upload",upload({path: 'uploads_custom_dir',extensions: ['jpg','png'],maxSizeBytes: 20000000,maxFileSizeBytes: 10000000,saveFile: true,readFile: false,useCurrentDir: true}),async(ctx: any,next: any)=>{ ...

Request must contains a body with form type "multipart/form-data", and inputs with type="file".

Ex (pre validation):

.post("/pre_upload",preUploadValidate(["jpg","png"],20000000,10000000),async(ctx: any,next: any)=>{ ...

Pre validation options:

preUploadValidate(
extensions: Array<string> = [],
maxSizeBytes: number = Number.MAX_SAFE_INTEGER,
maxFileSizeBytes: number = Number.MAX_SAFE_INTEGER,
)

Upload examples in frontend and backend

Below an frontend example to work with AJAX, also accepting type="file" multiple:

varfiles=document.querySelector("#yourFormId input[type=file]").files;varname=document.querySelector("#yourFormId input[type=file]").getAttribute("name",);varform=newFormData();for(vari=0;i<files.length;i++){form.append(`${name}_${i}`,files[i]);}varres=awaitfetch("/upload",{//Fetch API automatically puts the form in the format "multipart/form-data".method: "POST",body: form,}).then((response)=>response.json());console.log(res);//VALIDATIONS --------------varvalidationData={};for(vari=0;i<files.length;i++){varnewObj={//newObj is needed, JSON.stringify(files[i]) not work"name": files[i].name,"size": files[i].size,};validationData[`${name}_${i}`]=newObj;}varvalidations=awaitfetch("/pre_upload",{method: "POST",headers: {"Content-Type": "application/json"},body: JSON.stringify(validationData),}).then((response)=>response.json());console.log(validations);

In Deno (backend):

import{preUploadValidate,res,Server,upload,}from"https://deno.land/x/faster/mod.ts";constserver=newServer();server.post("/upload",res("json"),upload({path: "my_uploads",extensions: ["jpg","png"],maxSizeBytes: 20000000,maxFileSizeBytes: 10000000,}),async(ctx: any,next: any)=>{ctx.res.body=ctx.extra.uploadedFiles;awaitnext();},);server.post("/pre_upload",res("json"),preUploadValidate(["jpg","png"],20000000,10000000),async(ctx: any,next: any)=>{ctx.res.body={msg: "Passed upload validations."};awaitnext();},);server.get("/",res("html"),async(ctx: any,next: any)=>{ctx.res.body=` <form id="yourFormId" enctype="multipart/form-data" action="/upload" method="post"> <input type="file" name="file1" multiple><br> <input type="submit" value="Submit"> </form> `;awaitnext();});awaitserver.listen({port: 80});

All imports

import{Context,ContextResponse,//typeCookie,//type, alias to deno stddeleteCookie,//alias to deno stdgetCookies,//alias to deno stdlogger,NextFunc,//typeParams,//typeparse,preUploadValidate,ProcessorFunc,//typeproxy,rateLimit,redirect,req,res,Route,//typeRouteFn,//typeServer,serveStatic,Session,//typesession,SessionStorageEngine,setCookie,//alias to deno stdsetCORS,SQLiteStorageEngine,Token,upload,}from"https://deno.land/x/faster/mod.ts";

Example Deploy

Example of depoly application "my-deno-app" in ubuntu environment. Change the "my-deno-app" and the directories to yours.

Create service

Create run script ("run-server.sh") in your application folder with the content:

#!/bin/bash
/home/ubuntu/.deno/bin/deno run --allow-net --allow-read --allow-write /home/ubuntu/my-deno-app/app.ts

Give permission to the script:

chmod +x run-server.sh

Create service files:

sudo touch /etc/systemd/system/my-deno-app.servicesudo nano /etc/systemd/system/my-deno-app.service

In "my-deno-app".service (change the "Description", "WorkingDirectory" and "ExecStart" to yours):

[Unit]
Description=My Deno App
[Service]
WorkingDirectory=/home/ubuntu/my-deno-app
ExecStart=/home/ubuntu/my-deno-app/run-server.sh
TimeoutSec=30
Restart=always
RestartSec=1
[Install]
WantedBy=multi-user.target

If your application needs to wait for another service to start, such as the mongodb database, you can use the ´[Unit]´ section like this:

[Unit]
Description=My Deno App
After=mongod.service

Enable the "my-deno-app" service:

sudo systemctl enable my-deno-app.service

To start and stop the "my-deno-app" service:

sudo service my-deno-app stopsudo service my-deno-app start

See log:

journalctl -u my-deno-app.service --since=today -e

Configure HTTPS

Install certbot:

sudo apt install certbot

Generate certificates:

sudo certbot certonly --manual

In your application, to verify the domain you will need something like:

import{Server,serveStatic}from"https://deno.land/x/faster/mod.ts";constserver=newServer();server.get(//verify http://<YOUR_DOMAIN>/.well-known/acme-challenge/<TOKEN>"/.well-known/*",serveStatic("./.well-known"),// ex: create .well-known folder in yor app folder);awaitserver.listen({port: 80});

To run your application on https (Change "yourdomain.link" to your domain):

awaitserver.listen({port: 443,certFile: "/etc/letsencrypt/live/yourdomain.link/fullchain.pem",keyFile: "/etc/letsencrypt/live/yourdomain.link/privkey.pem",});

The certificate is valid for a short period. Set crontab to update automatically. The command 'sudo crontab' opens roots crontab, all commands are executed as sudo. Do like this:

sudo crontab -e

Add to the end of the file (to check and renew if necessary every 12 hours):

0 */12 * * * certbot -q renew --standalone --preferred-challenges=http

Or also to check every 7 days:

0 0 * * 0 certbot -q renew --standalone --preferred-challenges=http

About

Author: Henrique Emanoel Viana, a Brazilian computer scientist, enthusiast of web technologies, cel: +55 (41) 99999-4664. URL: https://sites.google.com/site/henriqueemanoelviana

Improvements and suggestions are welcome!

About

A fast and optimized middleware server with an absurdly small amount of code (300 lines) built on top of Deno's native HTTP APIs with no dependencies. It also has a collection of useful middlewares: log file, serve static, CORS, session, rate limit, token, body parsers, redirect, proxy and handle upload. In "README" there are examples of all the re

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Strip utm_, fbclid, gclid, etc. from all links on page\n(function() {\n var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content',\n 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid',\n 'ref', 'ref_src', 'source', 'medium', 'campaign'];\n \n function cleanUrl(url) {\n try {\n var u = new URL(url, window.location.origin);\n var changed = false;\n trackingParams.forEach(function(p) {\n if (u.searchParams.has(p)) {\n u.searchParams.delete(p);\n changed = true;\n }\n });\n return changed ? u.toString() : url;\n } catch (e) {\n return url;\n }\n }\n \n function cleanLinks() {\n document.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n \n cleanLinks();\n \n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1) {\n if (node.tagName === 'A') cleanLinks();\n node.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Remove Tracking Parameters from Links"); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + '
Skip to content

Latest commit

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

Faster

A fast and optimized middleware server with an absurdly small amount of code (300 lines) built on top of Deno's native HTTP APIs with no dependencies. It also has a collection of useful middlewares: log file, serve static, CORS, session, rate limit, token, body parsers, redirect, proxy and handle upload. In "README" there are examples of all the resources. Faster's ideology is: all you need is an optimized middleware manager, all other functionality is middleware.

Contents

Benchmarks

The middleware is built on top of Deno's native HTTP APIs, see the benchmarks ('hello word' server):

Machine: 8 GiB, Intel® Core™ i5-10210U CPU @ 2.11GHz × 4

method: autocannon -c 100 -d 40 -p 10 localhost:80. Deno v1.19.3, Ubuntu 20.04 LTS.

FrameworkVersionRouter?Results
Express4.17.3167k requests in 40.11s, 29 MB read
Fastify3.27.41105k requests in 40.07s ,193 MB read
Oak10.4.0260k requests in 40.09s, 45 MB read
Faster5.71432k requests in 40.17s, 250 MB read

Note that in addition to performance, Faster is a very complete framework considering its middleware collection.

Example

Defining routes

Static (/foo, /foo/bar)

Parameter (/:title, /books/:title, /books/:genre/:title)

Parameter w/ Suffix (/movies/:title.mp4, /movies/:title.(mp4|mov))

Optional Parameters (/:title?, /books/:title?, /books/:genre/:title?)

Wildcards (*, /books/*, /books/:genre/*)

POST read and return JSON

import{req,res,Server}from"https://deno.land/x/faster/mod.ts";constserver=newServer();server.post("/example_json",res("json"),req("json"),async(ctx: any,next: any)=>{console.log(ctx.body);ctx.res.body={msg: "json response example"};awaitnext();},);awaitserver.listen({port: 80});

GET return HTML

server.get("/example_html",res("html"),async(ctx: any,next: any)=>{ctx.res.body=` <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>title example</title> </head> </body> HTML body example <body> </html> `;awaitnext();},);

Get URL params

server.get("/example_params/:ex1?foo=bar",async(ctx: any,next: any)=>{console.log(ctx.params.ex1);console.log(ctx.url.searchParams.get("foo"));//you can explore the URL (ctx.url) objectawaitnext();},);

Cookies

import{Cookie,deleteCookie,getCookies,Server,setCookie,}from"https://deno.land/x/faster/mod.ts";//alias to deno stdserver.get("/cookies",async(ctx: any,next: any)=>{setCookie(ctx.res.headers,{name: "user_name",value: "San"});//explore interface 'Cookie' for more optionsdeleteCookie(ctx.res.headers,"last_order");console.log(getCookies(ctx.req.headers));awaitnext();},);

Redirect

server.get("/redirect_example",async(ctx: any,next: any)=>{ctx.redirect("/my_custom_url_or_path");awaitnext();},);

Middleares

This project has a standard set of middleware useful for most cases.

Logger

Example:

server.use(logger());

You can pass custom log file:

logger("./my_dir/my_custom_log.txt");

Body Parsers res and req

Example:

server.post("/example_parsers",res("json"),//Response parserreq("json"),//Request parserasync(ctx: any,next: any)=>{console.log(ctx.body);//the original (no parser) body is in ctx.req.bodyctx.res.body={msg: "json response example"};awaitnext();},);

The current supported options for "req" are: "arrayBuffer", "blob", "formData", "json", "text".

The current supported options for "res" are: "json", "html", "javascript".

If there are no parsers for your data, don't worry, you can handle the data manually, Ex:

server.post("/upload",async(ctx: any,next: any)=>{ctx.res.headers.set("Content-Type","application/json",);constdata=awaitexCustomParseBody(ctx.req.body);//do what you want with ctx.req.bodyctx.res.body=JSON.stringify({msg: "ok"});// //ctx.res.body can also be other data types such as streams, bytes and etc.awaitnext();},);

Rate Limit

Example:

server.use(rateLimit());

OPTIONS (with default values):

rateLimit({attempts: 30,interval: 10,maxTableSize: 100000,id: (ctx: Context)=>JSON.stringify(ctx.conn.remoteAddr),});

Serve Static

Example (must end with "/*"):

server.get("/pub/*",serveStatic("./pub"),);

Set Cors

Example:

server.options("/example_cors",setCORS());//enable pre-fligh requestserver.get("/example_cors",setCORS(),async(ctx,next)=>{awaitnext();},);

You can pass valid hosts to cors function:

setCORS("http://my.custom.url:8080");

Token

This middleware is encapsulated in an entire static class. It uses Bearer Token and default options with the "HS256" algorithm, and generates a random secret when starting the application (you can also set a secret manually). Ex:

server.get("/example_verify_token",//send token to server in Header => Authorization: Bearer TOKENToken.middleware,async(ctx,next)=>{console.log(ctx.extra.tokenPayload);console.log(ctx.extra.token);awaitnext();},);

Generate Token ex:

awaitToken.generate({user_id: "172746"},null);//null to never expire, this parameter defaults to "1h"

Set secret ex:

Token.setSecret("a3d2r366wgb3dh6yrwzw99kzx2");//Do this at the beginning of your application

Get token payload out of middleware:

awaitToken.getPayload("YOUR_TOKEN_STRING");//Ex: use for get token data from token string in URL parameter.

You can also use the static method Token.setConfigs.

Redirect

Ex:

server.get("/my_url_1",redirect("/my_url_2"),//or the full url);

Session

Ex:

server.use(session());//in routes:server.get("/session_example",async(ctx,next)=>{console.log(ctx.extra.session);//get session datactx.extra.session.foo="bar";//set session dataawaitnext();},);

OPTIONS (with default values):

session(engine: SessionStorageEngine = new SQLiteStorageEngine(60)) //60 is 60 minutes to expire session

Proxy

Ex:

server.use(proxy({url: "https://my-url-example.com"}));

In routes:

server.get("/proxy_example",async(ctx,next)=>{console.log(ctx.req);//req has changed as it now points to the proxyconsole.log(ctx.res);//res has changed because now it has the proxy answer//OR if replaceReqAndRes = falseconsole.log(ctx.extra.proxyReq);console.log(ctx.extra.proxyRes);awaitnext();},);

Or proxy in specific route:

server.get("/proxy_example",proxy({url: "https://my-url-example.com/proxy_ex2",replaceProxyPath: false,//specific proxy route for the route "/proxy_example"}),async(ctx,next)=>{console.log(ctx.req);//req has changed as it now points to the proxyconsole.log(ctx.res);//res has changed because now it has the proxy answerawaitnext();},);

Conditional proxy:

server.get("/proxy_example",proxy({url: "https://my-url-example.com/proxy_ex3",condition: (ctx)=>{if(ctx.url.searchParams.get("foo")){returntrue;}else{returnfalse;}},}),async(ctx,next)=>{console.log(ctx.extra.proxied);//will be true if proxy condition is trueconsole.log(ctx.req);//req has changed as it now points to the proxyconsole.log(ctx.res);//res has changed because now it has the proxy answerawaitnext();},);

OPTIONS (with default values):

proxy(url: string, replaceReqAndRes: true, replaceProxyPath: true, condition: : (ctx: Context) => true )

Do not use "res body parsers" with 'replaceReqAndRes: true' (default) !!!

If you don't use Request body information before the proxy or in your condition, don't use "req body parsers" as this will increase the processing cost !!!

Upload

This middleware automatically organizes uploads to avoid file system problems and create dirs if not exists, perform validations and optimizes ram usage when uploading large files using Deno standard libraries!

Upload usage

Ex:

.post("/upload",upload(),async(ctx: any,next: any)=>{ ...

Ex (with custom options):

.post("/upload",upload({path: 'uploads_custom_dir',extensions: ['jpg','png'],maxSizeBytes: 20000000,maxFileSizeBytes: 10000000,saveFile: true,readFile: false,useCurrentDir: true}),async(ctx: any,next: any)=>{ ...

Request must contains a body with form type "multipart/form-data", and inputs with type="file".

Ex (pre validation):

.post("/pre_upload",preUploadValidate(["jpg","png"],20000000,10000000),async(ctx: any,next: any)=>{ ...

Pre validation options:

preUploadValidate(
extensions: Array<string> = [],
maxSizeBytes: number = Number.MAX_SAFE_INTEGER,
maxFileSizeBytes: number = Number.MAX_SAFE_INTEGER,
)

Upload examples in frontend and backend

Below an frontend example to work with AJAX, also accepting type="file" multiple:

varfiles=document.querySelector("#yourFormId input[type=file]").files;varname=document.querySelector("#yourFormId input[type=file]").getAttribute("name",);varform=newFormData();for(vari=0;i<files.length;i++){form.append(`${name}_${i}`,files[i]);}varres=awaitfetch("/upload",{//Fetch API automatically puts the form in the format "multipart/form-data".method: "POST",body: form,}).then((response)=>response.json());console.log(res);//VALIDATIONS --------------varvalidationData={};for(vari=0;i<files.length;i++){varnewObj={//newObj is needed, JSON.stringify(files[i]) not work"name": files[i].name,"size": files[i].size,};validationData[`${name}_${i}`]=newObj;}varvalidations=awaitfetch("/pre_upload",{method: "POST",headers: {"Content-Type": "application/json"},body: JSON.stringify(validationData),}).then((response)=>response.json());console.log(validations);

In Deno (backend):

import{preUploadValidate,res,Server,upload,}from"https://deno.land/x/faster/mod.ts";constserver=newServer();server.post("/upload",res("json"),upload({path: "my_uploads",extensions: ["jpg","png"],maxSizeBytes: 20000000,maxFileSizeBytes: 10000000,}),async(ctx: any,next: any)=>{ctx.res.body=ctx.extra.uploadedFiles;awaitnext();},);server.post("/pre_upload",res("json"),preUploadValidate(["jpg","png"],20000000,10000000),async(ctx: any,next: any)=>{ctx.res.body={msg: "Passed upload validations."};awaitnext();},);server.get("/",res("html"),async(ctx: any,next: any)=>{ctx.res.body=` <form id="yourFormId" enctype="multipart/form-data" action="/upload" method="post"> <input type="file" name="file1" multiple><br> <input type="submit" value="Submit"> </form> `;awaitnext();});awaitserver.listen({port: 80});

All imports

import{Context,ContextResponse,//typeCookie,//type, alias to deno stddeleteCookie,//alias to deno stdgetCookies,//alias to deno stdlogger,NextFunc,//typeParams,//typeparse,preUploadValidate,ProcessorFunc,//typeproxy,rateLimit,redirect,req,res,Route,//typeRouteFn,//typeServer,serveStatic,Session,//typesession,SessionStorageEngine,setCookie,//alias to deno stdsetCORS,SQLiteStorageEngine,Token,upload,}from"https://deno.land/x/faster/mod.ts";

Example Deploy

Example of depoly application "my-deno-app" in ubuntu environment. Change the "my-deno-app" and the directories to yours.

Create service

Create run script ("run-server.sh") in your application folder with the content:

#!/bin/bash
/home/ubuntu/.deno/bin/deno run --allow-net --allow-read --allow-write /home/ubuntu/my-deno-app/app.ts

Give permission to the script:

chmod +x run-server.sh

Create service files:

sudo touch /etc/systemd/system/my-deno-app.servicesudo nano /etc/systemd/system/my-deno-app.service

In "my-deno-app".service (change the "Description", "WorkingDirectory" and "ExecStart" to yours):

[Unit]
Description=My Deno App
[Service]
WorkingDirectory=/home/ubuntu/my-deno-app
ExecStart=/home/ubuntu/my-deno-app/run-server.sh
TimeoutSec=30
Restart=always
RestartSec=1
[Install]
WantedBy=multi-user.target

If your application needs to wait for another service to start, such as the mongodb database, you can use the ´[Unit]´ section like this:

[Unit]
Description=My Deno App
After=mongod.service

Enable the "my-deno-app" service:

sudo systemctl enable my-deno-app.service

To start and stop the "my-deno-app" service:

sudo service my-deno-app stopsudo service my-deno-app start

See log:

journalctl -u my-deno-app.service --since=today -e

Configure HTTPS

Install certbot:

sudo apt install certbot

Generate certificates:

sudo certbot certonly --manual

In your application, to verify the domain you will need something like:

import{Server,serveStatic}from"https://deno.land/x/faster/mod.ts";constserver=newServer();server.get(//verify http://<YOUR_DOMAIN>/.well-known/acme-challenge/<TOKEN>"/.well-known/*",serveStatic("./.well-known"),// ex: create .well-known folder in yor app folder);awaitserver.listen({port: 80});

To run your application on https (Change "yourdomain.link" to your domain):

awaitserver.listen({port: 443,certFile: "/etc/letsencrypt/live/yourdomain.link/fullchain.pem",keyFile: "/etc/letsencrypt/live/yourdomain.link/privkey.pem",});

The certificate is valid for a short period. Set crontab to update automatically. The command 'sudo crontab' opens roots crontab, all commands are executed as sudo. Do like this:

sudo crontab -e

Add to the end of the file (to check and renew if necessary every 12 hours):

0 */12 * * * certbot -q renew --standalone --preferred-challenges=http

Or also to check every 7 days:

0 0 * * 0 certbot -q renew --standalone --preferred-challenges=http

About

Author: Henrique Emanoel Viana, a Brazilian computer scientist, enthusiast of web technologies, cel: +55 (41) 99999-4664. URL: https://sites.google.com/site/henriqueemanoelviana

Improvements and suggestions are welcome!

About

A fast and optimized middleware server with an absurdly small amount of code (300 lines) built on top of Deno's native HTTP APIs with no dependencies. It also has a collection of useful middlewares: log file, serve static, CORS, session, rate limit, token, body parsers, redirect, proxy and handle upload. In "README" there are examples of all the re

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Auto-enable theater mode on YouTube\n(function() {\n function tryTheater() {\n var btn = document.querySelector('button[aria-label=\"Theater mode\"], ytd-player #player button[title=\"Theater mode\"]');\n if (btn && !btn.classList.contains('activated')) {\n btn.click();\n }\n }\n \n // Try immediately\n tryTheater();\n \n // Try after navigation (SPA)\n var lastUrl = location.href;\n setInterval(function() {\n if (location.href !== lastUrl) {\n lastUrl = location.href;\n setTimeout(tryTheater, 500);\n }\n }, 1000);\n \n // Also try on player load\n var observer = new MutationObserver(tryTheater);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "YouTube Theater Mode Default"); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

Latest commit

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

Faster

A fast and optimized middleware server with an absurdly small amount of code (300 lines) built on top of Deno's native HTTP APIs with no dependencies. It also has a collection of useful middlewares: log file, serve static, CORS, session, rate limit, token, body parsers, redirect, proxy and handle upload. In "README" there are examples of all the resources. Faster's ideology is: all you need is an optimized middleware manager, all other functionality is middleware.

Contents

Benchmarks

The middleware is built on top of Deno's native HTTP APIs, see the benchmarks ('hello word' server):

Machine: 8 GiB, Intel® Core™ i5-10210U CPU @ 2.11GHz × 4

method: autocannon -c 100 -d 40 -p 10 localhost:80. Deno v1.19.3, Ubuntu 20.04 LTS.

FrameworkVersionRouter?Results
Express4.17.3167k requests in 40.11s, 29 MB read
Fastify3.27.41105k requests in 40.07s ,193 MB read
Oak10.4.0260k requests in 40.09s, 45 MB read
Faster5.71432k requests in 40.17s, 250 MB read

Note that in addition to performance, Faster is a very complete framework considering its middleware collection.

Example

Defining routes

Static (/foo, /foo/bar)

Parameter (/:title, /books/:title, /books/:genre/:title)

Parameter w/ Suffix (/movies/:title.mp4, /movies/:title.(mp4|mov))

Optional Parameters (/:title?, /books/:title?, /books/:genre/:title?)

Wildcards (*, /books/*, /books/:genre/*)

POST read and return JSON

import{req,res,Server}from"https://deno.land/x/faster/mod.ts";constserver=newServer();server.post("/example_json",res("json"),req("json"),async(ctx: any,next: any)=>{console.log(ctx.body);ctx.res.body={msg: "json response example"};awaitnext();},);awaitserver.listen({port: 80});

GET return HTML

server.get("/example_html",res("html"),async(ctx: any,next: any)=>{ctx.res.body=` <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>title example</title> </head> </body> HTML body example <body> </html> `;awaitnext();},);

Get URL params

server.get("/example_params/:ex1?foo=bar",async(ctx: any,next: any)=>{console.log(ctx.params.ex1);console.log(ctx.url.searchParams.get("foo"));//you can explore the URL (ctx.url) objectawaitnext();},);

Cookies

import{Cookie,deleteCookie,getCookies,Server,setCookie,}from"https://deno.land/x/faster/mod.ts";//alias to deno stdserver.get("/cookies",async(ctx: any,next: any)=>{setCookie(ctx.res.headers,{name: "user_name",value: "San"});//explore interface 'Cookie' for more optionsdeleteCookie(ctx.res.headers,"last_order");console.log(getCookies(ctx.req.headers));awaitnext();},);

Redirect

server.get("/redirect_example",async(ctx: any,next: any)=>{ctx.redirect("/my_custom_url_or_path");awaitnext();},);

Middleares

This project has a standard set of middleware useful for most cases.

Logger

Example:

server.use(logger());

You can pass custom log file:

logger("./my_dir/my_custom_log.txt");

Body Parsers res and req

Example:

server.post("/example_parsers",res("json"),//Response parserreq("json"),//Request parserasync(ctx: any,next: any)=>{console.log(ctx.body);//the original (no parser) body is in ctx.req.bodyctx.res.body={msg: "json response example"};awaitnext();},);

The current supported options for "req" are: "arrayBuffer", "blob", "formData", "json", "text".

The current supported options for "res" are: "json", "html", "javascript".

If there are no parsers for your data, don't worry, you can handle the data manually, Ex:

server.post("/upload",async(ctx: any,next: any)=>{ctx.res.headers.set("Content-Type","application/json",);constdata=awaitexCustomParseBody(ctx.req.body);//do what you want with ctx.req.bodyctx.res.body=JSON.stringify({msg: "ok"});// //ctx.res.body can also be other data types such as streams, bytes and etc.awaitnext();},);

Rate Limit

Example:

server.use(rateLimit());

OPTIONS (with default values):

rateLimit({attempts: 30,interval: 10,maxTableSize: 100000,id: (ctx: Context)=>JSON.stringify(ctx.conn.remoteAddr),});

Serve Static

Example (must end with "/*"):

server.get("/pub/*",serveStatic("./pub"),);

Set Cors

Example:

server.options("/example_cors",setCORS());//enable pre-fligh requestserver.get("/example_cors",setCORS(),async(ctx,next)=>{awaitnext();},);

You can pass valid hosts to cors function:

setCORS("http://my.custom.url:8080");

Token

This middleware is encapsulated in an entire static class. It uses Bearer Token and default options with the "HS256" algorithm, and generates a random secret when starting the application (you can also set a secret manually). Ex:

server.get("/example_verify_token",//send token to server in Header => Authorization: Bearer TOKENToken.middleware,async(ctx,next)=>{console.log(ctx.extra.tokenPayload);console.log(ctx.extra.token);awaitnext();},);

Generate Token ex:

awaitToken.generate({user_id: "172746"},null);//null to never expire, this parameter defaults to "1h"

Set secret ex:

Token.setSecret("a3d2r366wgb3dh6yrwzw99kzx2");//Do this at the beginning of your application

Get token payload out of middleware:

awaitToken.getPayload("YOUR_TOKEN_STRING");//Ex: use for get token data from token string in URL parameter.

You can also use the static method Token.setConfigs.

Redirect

Ex:

server.get("/my_url_1",redirect("/my_url_2"),//or the full url);

Session

Ex:

server.use(session());//in routes:server.get("/session_example",async(ctx,next)=>{console.log(ctx.extra.session);//get session datactx.extra.session.foo="bar";//set session dataawaitnext();},);

OPTIONS (with default values):

session(engine: SessionStorageEngine = new SQLiteStorageEngine(60)) //60 is 60 minutes to expire session

Proxy

Ex:

server.use(proxy({url: "https://my-url-example.com"}));

In routes:

server.get("/proxy_example",async(ctx,next)=>{console.log(ctx.req);//req has changed as it now points to the proxyconsole.log(ctx.res);//res has changed because now it has the proxy answer//OR if replaceReqAndRes = falseconsole.log(ctx.extra.proxyReq);console.log(ctx.extra.proxyRes);awaitnext();},);

Or proxy in specific route:

server.get("/proxy_example",proxy({url: "https://my-url-example.com/proxy_ex2",replaceProxyPath: false,//specific proxy route for the route "/proxy_example"}),async(ctx,next)=>{console.log(ctx.req);//req has changed as it now points to the proxyconsole.log(ctx.res);//res has changed because now it has the proxy answerawaitnext();},);

Conditional proxy:

server.get("/proxy_example",proxy({url: "https://my-url-example.com/proxy_ex3",condition: (ctx)=>{if(ctx.url.searchParams.get("foo")){returntrue;}else{returnfalse;}},}),async(ctx,next)=>{console.log(ctx.extra.proxied);//will be true if proxy condition is trueconsole.log(ctx.req);//req has changed as it now points to the proxyconsole.log(ctx.res);//res has changed because now it has the proxy answerawaitnext();},);

OPTIONS (with default values):

proxy(url: string, replaceReqAndRes: true, replaceProxyPath: true, condition: : (ctx: Context) => true )

Do not use "res body parsers" with 'replaceReqAndRes: true' (default) !!!

If you don't use Request body information before the proxy or in your condition, don't use "req body parsers" as this will increase the processing cost !!!

Upload

This middleware automatically organizes uploads to avoid file system problems and create dirs if not exists, perform validations and optimizes ram usage when uploading large files using Deno standard libraries!

Upload usage

Ex:

.post("/upload",upload(),async(ctx: any,next: any)=>{ ...

Ex (with custom options):

.post("/upload",upload({path: 'uploads_custom_dir',extensions: ['jpg','png'],maxSizeBytes: 20000000,maxFileSizeBytes: 10000000,saveFile: true,readFile: false,useCurrentDir: true}),async(ctx: any,next: any)=>{ ...

Request must contains a body with form type "multipart/form-data", and inputs with type="file".

Ex (pre validation):

.post("/pre_upload",preUploadValidate(["jpg","png"],20000000,10000000),async(ctx: any,next: any)=>{ ...

Pre validation options:

preUploadValidate(
extensions: Array<string> = [],
maxSizeBytes: number = Number.MAX_SAFE_INTEGER,
maxFileSizeBytes: number = Number.MAX_SAFE_INTEGER,
)

Upload examples in frontend and backend

Below an frontend example to work with AJAX, also accepting type="file" multiple:

varfiles=document.querySelector("#yourFormId input[type=file]").files;varname=document.querySelector("#yourFormId input[type=file]").getAttribute("name",);varform=newFormData();for(vari=0;i<files.length;i++){form.append(`${name}_${i}`,files[i]);}varres=awaitfetch("/upload",{//Fetch API automatically puts the form in the format "multipart/form-data".method: "POST",body: form,}).then((response)=>response.json());console.log(res);//VALIDATIONS --------------varvalidationData={};for(vari=0;i<files.length;i++){varnewObj={//newObj is needed, JSON.stringify(files[i]) not work"name": files[i].name,"size": files[i].size,};validationData[`${name}_${i}`]=newObj;}varvalidations=awaitfetch("/pre_upload",{method: "POST",headers: {"Content-Type": "application/json"},body: JSON.stringify(validationData),}).then((response)=>response.json());console.log(validations);

In Deno (backend):

import{preUploadValidate,res,Server,upload,}from"https://deno.land/x/faster/mod.ts";constserver=newServer();server.post("/upload",res("json"),upload({path: "my_uploads",extensions: ["jpg","png"],maxSizeBytes: 20000000,maxFileSizeBytes: 10000000,}),async(ctx: any,next: any)=>{ctx.res.body=ctx.extra.uploadedFiles;awaitnext();},);server.post("/pre_upload",res("json"),preUploadValidate(["jpg","png"],20000000,10000000),async(ctx: any,next: any)=>{ctx.res.body={msg: "Passed upload validations."};awaitnext();},);server.get("/",res("html"),async(ctx: any,next: any)=>{ctx.res.body=` <form id="yourFormId" enctype="multipart/form-data" action="/upload" method="post"> <input type="file" name="file1" multiple><br> <input type="submit" value="Submit"> </form> `;awaitnext();});awaitserver.listen({port: 80});

All imports

import{Context,ContextResponse,//typeCookie,//type, alias to deno stddeleteCookie,//alias to deno stdgetCookies,//alias to deno stdlogger,NextFunc,//typeParams,//typeparse,preUploadValidate,ProcessorFunc,//typeproxy,rateLimit,redirect,req,res,Route,//typeRouteFn,//typeServer,serveStatic,Session,//typesession,SessionStorageEngine,setCookie,//alias to deno stdsetCORS,SQLiteStorageEngine,Token,upload,}from"https://deno.land/x/faster/mod.ts";

Example Deploy

Example of depoly application "my-deno-app" in ubuntu environment. Change the "my-deno-app" and the directories to yours.

Create service

Create run script ("run-server.sh") in your application folder with the content:

#!/bin/bash
/home/ubuntu/.deno/bin/deno run --allow-net --allow-read --allow-write /home/ubuntu/my-deno-app/app.ts

Give permission to the script:

chmod +x run-server.sh

Create service files:

sudo touch /etc/systemd/system/my-deno-app.servicesudo nano /etc/systemd/system/my-deno-app.service

In "my-deno-app".service (change the "Description", "WorkingDirectory" and "ExecStart" to yours):

[Unit]
Description=My Deno App
[Service]
WorkingDirectory=/home/ubuntu/my-deno-app
ExecStart=/home/ubuntu/my-deno-app/run-server.sh
TimeoutSec=30
Restart=always
RestartSec=1
[Install]
WantedBy=multi-user.target

If your application needs to wait for another service to start, such as the mongodb database, you can use the ´[Unit]´ section like this:

[Unit]
Description=My Deno App
After=mongod.service

Enable the "my-deno-app" service:

sudo systemctl enable my-deno-app.service

To start and stop the "my-deno-app" service:

sudo service my-deno-app stopsudo service my-deno-app start

See log:

journalctl -u my-deno-app.service --since=today -e

Configure HTTPS

Install certbot:

sudo apt install certbot

Generate certificates:

sudo certbot certonly --manual

In your application, to verify the domain you will need something like:

import{Server,serveStatic}from"https://deno.land/x/faster/mod.ts";constserver=newServer();server.get(//verify http://<YOUR_DOMAIN>/.well-known/acme-challenge/<TOKEN>"/.well-known/*",serveStatic("./.well-known"),// ex: create .well-known folder in yor app folder);awaitserver.listen({port: 80});

To run your application on https (Change "yourdomain.link" to your domain):

awaitserver.listen({port: 443,certFile: "/etc/letsencrypt/live/yourdomain.link/fullchain.pem",keyFile: "/etc/letsencrypt/live/yourdomain.link/privkey.pem",});

The certificate is valid for a short period. Set crontab to update automatically. The command 'sudo crontab' opens roots crontab, all commands are executed as sudo. Do like this:

sudo crontab -e

Add to the end of the file (to check and renew if necessary every 12 hours):

0 */12 * * * certbot -q renew --standalone --preferred-challenges=http

Or also to check every 7 days:

0 0 * * 0 certbot -q renew --standalone --preferred-challenges=http

About

Author: Henrique Emanoel Viana, a Brazilian computer scientist, enthusiast of web technologies, cel: +55 (41) 99999-4664. URL: https://sites.google.com/site/henriqueemanoelviana

Improvements and suggestions are welcome!

About

A fast and optimized middleware server with an absurdly small amount of code (300 lines) built on top of Deno's native HTTP APIs with no dependencies. It also has a collection of useful middlewares: log file, serve static, CORS, session, rate limit, token, body parsers, redirect, proxy and handle upload. In "README" there are examples of all the re

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Remove or un-stick sticky/fixed headers that block content\n(function() {\n function unstick() {\n document.querySelectorAll('header, nav, [role=\"banner\"], .header, .navbar, .sticky, .fixed-top, [style*=\"position: fixed\"], [style*=\"position:sticky\"]').forEach(function(el) {\n if (el.style.position === 'fixed' || el.style.position === 'sticky' || \n getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') {\n el.style.position = 'static';\n el.style.top = 'auto';\n el.style.zIndex = 'auto';\n }\n });\n }\n \n unstick();\n \n var observer = new MutationObserver(unstick);\n observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] });\n})();", "Kill Sticky Headers"); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

Latest commit

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

Faster

A fast and optimized middleware server with an absurdly small amount of code (300 lines) built on top of Deno's native HTTP APIs with no dependencies. It also has a collection of useful middlewares: log file, serve static, CORS, session, rate limit, token, body parsers, redirect, proxy and handle upload. In "README" there are examples of all the resources. Faster's ideology is: all you need is an optimized middleware manager, all other functionality is middleware.

Contents

Benchmarks

The middleware is built on top of Deno's native HTTP APIs, see the benchmarks ('hello word' server):

Machine: 8 GiB, Intel® Core™ i5-10210U CPU @ 2.11GHz × 4

method: autocannon -c 100 -d 40 -p 10 localhost:80. Deno v1.19.3, Ubuntu 20.04 LTS.

FrameworkVersionRouter?Results
Express4.17.3167k requests in 40.11s, 29 MB read
Fastify3.27.41105k requests in 40.07s ,193 MB read
Oak10.4.0260k requests in 40.09s, 45 MB read
Faster5.71432k requests in 40.17s, 250 MB read

Note that in addition to performance, Faster is a very complete framework considering its middleware collection.

Example

Defining routes

Static (/foo, /foo/bar)

Parameter (/:title, /books/:title, /books/:genre/:title)

Parameter w/ Suffix (/movies/:title.mp4, /movies/:title.(mp4|mov))

Optional Parameters (/:title?, /books/:title?, /books/:genre/:title?)

Wildcards (*, /books/*, /books/:genre/*)

POST read and return JSON

import{req,res,Server}from"https://deno.land/x/faster/mod.ts";constserver=newServer();server.post("/example_json",res("json"),req("json"),async(ctx: any,next: any)=>{console.log(ctx.body);ctx.res.body={msg: "json response example"};awaitnext();},);awaitserver.listen({port: 80});

GET return HTML

server.get("/example_html",res("html"),async(ctx: any,next: any)=>{ctx.res.body=` <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>title example</title> </head> </body> HTML body example <body> </html> `;awaitnext();},);

Get URL params

server.get("/example_params/:ex1?foo=bar",async(ctx: any,next: any)=>{console.log(ctx.params.ex1);console.log(ctx.url.searchParams.get("foo"));//you can explore the URL (ctx.url) objectawaitnext();},);

Cookies

import{Cookie,deleteCookie,getCookies,Server,setCookie,}from"https://deno.land/x/faster/mod.ts";//alias to deno stdserver.get("/cookies",async(ctx: any,next: any)=>{setCookie(ctx.res.headers,{name: "user_name",value: "San"});//explore interface 'Cookie' for more optionsdeleteCookie(ctx.res.headers,"last_order");console.log(getCookies(ctx.req.headers));awaitnext();},);

Redirect

server.get("/redirect_example",async(ctx: any,next: any)=>{ctx.redirect("/my_custom_url_or_path");awaitnext();},);

Middleares

This project has a standard set of middleware useful for most cases.

Logger

Example:

server.use(logger());

You can pass custom log file:

logger("./my_dir/my_custom_log.txt");

Body Parsers res and req

Example:

server.post("/example_parsers",res("json"),//Response parserreq("json"),//Request parserasync(ctx: any,next: any)=>{console.log(ctx.body);//the original (no parser) body is in ctx.req.bodyctx.res.body={msg: "json response example"};awaitnext();},);

The current supported options for "req" are: "arrayBuffer", "blob", "formData", "json", "text".

The current supported options for "res" are: "json", "html", "javascript".

If there are no parsers for your data, don't worry, you can handle the data manually, Ex:

server.post("/upload",async(ctx: any,next: any)=>{ctx.res.headers.set("Content-Type","application/json",);constdata=awaitexCustomParseBody(ctx.req.body);//do what you want with ctx.req.bodyctx.res.body=JSON.stringify({msg: "ok"});// //ctx.res.body can also be other data types such as streams, bytes and etc.awaitnext();},);

Rate Limit

Example:

server.use(rateLimit());

OPTIONS (with default values):

rateLimit({attempts: 30,interval: 10,maxTableSize: 100000,id: (ctx: Context)=>JSON.stringify(ctx.conn.remoteAddr),});

Serve Static

Example (must end with "/*"):

server.get("/pub/*",serveStatic("./pub"),);

Set Cors

Example:

server.options("/example_cors",setCORS());//enable pre-fligh requestserver.get("/example_cors",setCORS(),async(ctx,next)=>{awaitnext();},);

You can pass valid hosts to cors function:

setCORS("http://my.custom.url:8080");

Token

This middleware is encapsulated in an entire static class. It uses Bearer Token and default options with the "HS256" algorithm, and generates a random secret when starting the application (you can also set a secret manually). Ex:

server.get("/example_verify_token",//send token to server in Header => Authorization: Bearer TOKENToken.middleware,async(ctx,next)=>{console.log(ctx.extra.tokenPayload);console.log(ctx.extra.token);awaitnext();},);

Generate Token ex:

awaitToken.generate({user_id: "172746"},null);//null to never expire, this parameter defaults to "1h"

Set secret ex:

Token.setSecret("a3d2r366wgb3dh6yrwzw99kzx2");//Do this at the beginning of your application

Get token payload out of middleware:

awaitToken.getPayload("YOUR_TOKEN_STRING");//Ex: use for get token data from token string in URL parameter.

You can also use the static method Token.setConfigs.

Redirect

Ex:

server.get("/my_url_1",redirect("/my_url_2"),//or the full url);

Session

Ex:

server.use(session());//in routes:server.get("/session_example",async(ctx,next)=>{console.log(ctx.extra.session);//get session datactx.extra.session.foo="bar";//set session dataawaitnext();},);

OPTIONS (with default values):

session(engine: SessionStorageEngine = new SQLiteStorageEngine(60)) //60 is 60 minutes to expire session

Proxy

Ex:

server.use(proxy({url: "https://my-url-example.com"}));

In routes:

server.get("/proxy_example",async(ctx,next)=>{console.log(ctx.req);//req has changed as it now points to the proxyconsole.log(ctx.res);//res has changed because now it has the proxy answer//OR if replaceReqAndRes = falseconsole.log(ctx.extra.proxyReq);console.log(ctx.extra.proxyRes);awaitnext();},);

Or proxy in specific route:

server.get("/proxy_example",proxy({url: "https://my-url-example.com/proxy_ex2",replaceProxyPath: false,//specific proxy route for the route "/proxy_example"}),async(ctx,next)=>{console.log(ctx.req);//req has changed as it now points to the proxyconsole.log(ctx.res);//res has changed because now it has the proxy answerawaitnext();},);

Conditional proxy:

server.get("/proxy_example",proxy({url: "https://my-url-example.com/proxy_ex3",condition: (ctx)=>{if(ctx.url.searchParams.get("foo")){returntrue;}else{returnfalse;}},}),async(ctx,next)=>{console.log(ctx.extra.proxied);//will be true if proxy condition is trueconsole.log(ctx.req);//req has changed as it now points to the proxyconsole.log(ctx.res);//res has changed because now it has the proxy answerawaitnext();},);

OPTIONS (with default values):

proxy(url: string, replaceReqAndRes: true, replaceProxyPath: true, condition: : (ctx: Context) => true )

Do not use "res body parsers" with 'replaceReqAndRes: true' (default) !!!

If you don't use Request body information before the proxy or in your condition, don't use "req body parsers" as this will increase the processing cost !!!

Upload

This middleware automatically organizes uploads to avoid file system problems and create dirs if not exists, perform validations and optimizes ram usage when uploading large files using Deno standard libraries!

Upload usage

Ex:

.post("/upload",upload(),async(ctx: any,next: any)=>{ ...

Ex (with custom options):

.post("/upload",upload({path: 'uploads_custom_dir',extensions: ['jpg','png'],maxSizeBytes: 20000000,maxFileSizeBytes: 10000000,saveFile: true,readFile: false,useCurrentDir: true}),async(ctx: any,next: any)=>{ ...

Request must contains a body with form type "multipart/form-data", and inputs with type="file".

Ex (pre validation):

.post("/pre_upload",preUploadValidate(["jpg","png"],20000000,10000000),async(ctx: any,next: any)=>{ ...

Pre validation options:

preUploadValidate(
extensions: Array<string> = [],
maxSizeBytes: number = Number.MAX_SAFE_INTEGER,
maxFileSizeBytes: number = Number.MAX_SAFE_INTEGER,
)

Upload examples in frontend and backend

Below an frontend example to work with AJAX, also accepting type="file" multiple:

varfiles=document.querySelector("#yourFormId input[type=file]").files;varname=document.querySelector("#yourFormId input[type=file]").getAttribute("name",);varform=newFormData();for(vari=0;i<files.length;i++){form.append(`${name}_${i}`,files[i]);}varres=awaitfetch("/upload",{//Fetch API automatically puts the form in the format "multipart/form-data".method: "POST",body: form,}).then((response)=>response.json());console.log(res);//VALIDATIONS --------------varvalidationData={};for(vari=0;i<files.length;i++){varnewObj={//newObj is needed, JSON.stringify(files[i]) not work"name": files[i].name,"size": files[i].size,};validationData[`${name}_${i}`]=newObj;}varvalidations=awaitfetch("/pre_upload",{method: "POST",headers: {"Content-Type": "application/json"},body: JSON.stringify(validationData),}).then((response)=>response.json());console.log(validations);

In Deno (backend):

import{preUploadValidate,res,Server,upload,}from"https://deno.land/x/faster/mod.ts";constserver=newServer();server.post("/upload",res("json"),upload({path: "my_uploads",extensions: ["jpg","png"],maxSizeBytes: 20000000,maxFileSizeBytes: 10000000,}),async(ctx: any,next: any)=>{ctx.res.body=ctx.extra.uploadedFiles;awaitnext();},);server.post("/pre_upload",res("json"),preUploadValidate(["jpg","png"],20000000,10000000),async(ctx: any,next: any)=>{ctx.res.body={msg: "Passed upload validations."};awaitnext();},);server.get("/",res("html"),async(ctx: any,next: any)=>{ctx.res.body=` <form id="yourFormId" enctype="multipart/form-data" action="/upload" method="post"> <input type="file" name="file1" multiple><br> <input type="submit" value="Submit"> </form> `;awaitnext();});awaitserver.listen({port: 80});

All imports

import{Context,ContextResponse,//typeCookie,//type, alias to deno stddeleteCookie,//alias to deno stdgetCookies,//alias to deno stdlogger,NextFunc,//typeParams,//typeparse,preUploadValidate,ProcessorFunc,//typeproxy,rateLimit,redirect,req,res,Route,//typeRouteFn,//typeServer,serveStatic,Session,//typesession,SessionStorageEngine,setCookie,//alias to deno stdsetCORS,SQLiteStorageEngine,Token,upload,}from"https://deno.land/x/faster/mod.ts";

Example Deploy

Example of depoly application "my-deno-app" in ubuntu environment. Change the "my-deno-app" and the directories to yours.

Create service

Create run script ("run-server.sh") in your application folder with the content:

#!/bin/bash
/home/ubuntu/.deno/bin/deno run --allow-net --allow-read --allow-write /home/ubuntu/my-deno-app/app.ts

Give permission to the script:

chmod +x run-server.sh

Create service files:

sudo touch /etc/systemd/system/my-deno-app.servicesudo nano /etc/systemd/system/my-deno-app.service

In "my-deno-app".service (change the "Description", "WorkingDirectory" and "ExecStart" to yours):

[Unit]
Description=My Deno App
[Service]
WorkingDirectory=/home/ubuntu/my-deno-app
ExecStart=/home/ubuntu/my-deno-app/run-server.sh
TimeoutSec=30
Restart=always
RestartSec=1
[Install]
WantedBy=multi-user.target

If your application needs to wait for another service to start, such as the mongodb database, you can use the ´[Unit]´ section like this:

[Unit]
Description=My Deno App
After=mongod.service

Enable the "my-deno-app" service:

sudo systemctl enable my-deno-app.service

To start and stop the "my-deno-app" service:

sudo service my-deno-app stopsudo service my-deno-app start

See log:

journalctl -u my-deno-app.service --since=today -e

Configure HTTPS

Install certbot:

sudo apt install certbot

Generate certificates:

sudo certbot certonly --manual

In your application, to verify the domain you will need something like:

import{Server,serveStatic}from"https://deno.land/x/faster/mod.ts";constserver=newServer();server.get(//verify http://<YOUR_DOMAIN>/.well-known/acme-challenge/<TOKEN>"/.well-known/*",serveStatic("./.well-known"),// ex: create .well-known folder in yor app folder);awaitserver.listen({port: 80});

To run your application on https (Change "yourdomain.link" to your domain):

awaitserver.listen({port: 443,certFile: "/etc/letsencrypt/live/yourdomain.link/fullchain.pem",keyFile: "/etc/letsencrypt/live/yourdomain.link/privkey.pem",});

The certificate is valid for a short period. Set crontab to update automatically. The command 'sudo crontab' opens roots crontab, all commands are executed as sudo. Do like this:

sudo crontab -e

Add to the end of the file (to check and renew if necessary every 12 hours):

0 */12 * * * certbot -q renew --standalone --preferred-challenges=http

Or also to check every 7 days:

0 0 * * 0 certbot -q renew --standalone --preferred-challenges=http

About

Author: Henrique Emanoel Viana, a Brazilian computer scientist, enthusiast of web technologies, cel: +55 (41) 99999-4664. URL: https://sites.google.com/site/henriqueemanoelviana

Improvements and suggestions are welcome!

About

A fast and optimized middleware server with an absurdly small amount of code (300 lines) built on top of Deno's native HTTP APIs with no dependencies. It also has a collection of useful middlewares: log file, serve static, CORS, session, rate limit, token, body parsers, redirect, proxy and handle upload. In "README" there are examples of all the re

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages

, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Universal Dark Mode - works on any site\n(function() {\n var enabled = true;\n \n function applyDarkMode() {\n if (!enabled) return;\n \n // Create style element if it doesn't exist\n var style = document.getElementById('universal-dark-mode-style');\n if (!style) {\n style = document.createElement('style');\n style.id = 'universal-dark-mode-style';\n document.head.appendChild(style);\n }\n \n // Dark mode CSS - inverts colors but preserves images/video\n style.textContent = '\n /* Invert everything except media */\n html {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #1a1a2e !important;\n }\n \n /* Restore images, videos, iframes, canvas */\n img, video, iframe, canvas, svg, picture, [style*=\"background-image\"] {\n filter: invert(1) hue-rotate(180deg) !important;\n }\n \n /* Preserve specific elements that should not be inverted */\n .no-dark-mode, .no-dark-mode *,\n [data-theme=\"light\"], [data-theme=\"light\"],\n .ace_editor, .ace_editor *,\n .CodeMirror, .CodeMirror *,\n .monaco-editor, .monaco-editor *,\n .markdown-body pre, .markdown-body pre *,\n .highlight, .highlight *,\n pre code, pre code * {\n filter: none !important;\n }\n \n /* Fix common UI elements */\n .modal, .popup, .dropdown-menu, .tooltip, .popover {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #2d2d44 !important;\n border-color: #444 !important;\n }\n \n /* Scrollbars */\n ::-webkit-scrollbar { background: #1a1a2e !important; }\n ::-webkit-scrollbar-thumb { background: #444 !important; }\n ::-webkit-scrollbar-thumb:hover { background: #555 !important; }\n \n /* Selection */\n ::selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ::-moz-selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ';\n }\n \n function removeDarkMode() {\n var style = document.getElementById('universal-dark-mode-style');\n if (style) style.remove();\n }\n \n // Toggle with Alt+Shift+D\n document.addEventListener('keydown', function(e) {\n if (e.altKey && e.shiftKey && e.key === 'D') {\n e.preventDefault();\n enabled = !enabled;\n if (enabled) {\n applyDarkMode();\n console.log('[Universal Dark Mode] Enabled');\n } else {\n removeDarkMode();\n console.log('[Universal Dark Mode] Disabled');\n }\n }\n });\n \n // Apply on load\n applyDarkMode();\n \n // Re-apply on dynamic content\n var observer = new MutationObserver(function(mutations) {\n if (enabled && !document.getElementById('universal-dark-mode-style')) {\n applyDarkMode();\n }\n });\n observer.observe(document.head, { childList: true });\n \n console.log('[Universal Dark Mode] Loaded - Press Alt+Shift+D to toggle');\n})();", "Universal Dark Mode"); } } catch(__e) { console.warn('[Userscript:Universal Dark Mode]', __e); } })(); })();
Skip to content

Latest commit

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

Faster

A fast and optimized middleware server with an absurdly small amount of code (300 lines) built on top of Deno's native HTTP APIs with no dependencies. It also has a collection of useful middlewares: log file, serve static, CORS, session, rate limit, token, body parsers, redirect, proxy and handle upload. In "README" there are examples of all the resources. Faster's ideology is: all you need is an optimized middleware manager, all other functionality is middleware.

Contents

Benchmarks

The middleware is built on top of Deno's native HTTP APIs, see the benchmarks ('hello word' server):

Machine: 8 GiB, Intel® Core™ i5-10210U CPU @ 2.11GHz × 4

method: autocannon -c 100 -d 40 -p 10 localhost:80. Deno v1.19.3, Ubuntu 20.04 LTS.

FrameworkVersionRouter?Results
Express4.17.3167k requests in 40.11s, 29 MB read
Fastify3.27.41105k requests in 40.07s ,193 MB read
Oak10.4.0260k requests in 40.09s, 45 MB read
Faster5.71432k requests in 40.17s, 250 MB read

Note that in addition to performance, Faster is a very complete framework considering its middleware collection.

Example

Defining routes

Static (/foo, /foo/bar)

Parameter (/:title, /books/:title, /books/:genre/:title)

Parameter w/ Suffix (/movies/:title.mp4, /movies/:title.(mp4|mov))

Optional Parameters (/:title?, /books/:title?, /books/:genre/:title?)

Wildcards (*, /books/*, /books/:genre/*)

POST read and return JSON

import{req,res,Server}from"https://deno.land/x/faster/mod.ts";constserver=newServer();server.post("/example_json",res("json"),req("json"),async(ctx: any,next: any)=>{console.log(ctx.body);ctx.res.body={msg: "json response example"};awaitnext();},);awaitserver.listen({port: 80});

GET return HTML

server.get("/example_html",res("html"),async(ctx: any,next: any)=>{ctx.res.body=` <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>title example</title> </head> </body> HTML body example <body> </html> `;awaitnext();},);

Get URL params

server.get("/example_params/:ex1?foo=bar",async(ctx: any,next: any)=>{console.log(ctx.params.ex1);console.log(ctx.url.searchParams.get("foo"));//you can explore the URL (ctx.url) objectawaitnext();},);

Cookies

import{Cookie,deleteCookie,getCookies,Server,setCookie,}from"https://deno.land/x/faster/mod.ts";//alias to deno stdserver.get("/cookies",async(ctx: any,next: any)=>{setCookie(ctx.res.headers,{name: "user_name",value: "San"});//explore interface 'Cookie' for more optionsdeleteCookie(ctx.res.headers,"last_order");console.log(getCookies(ctx.req.headers));awaitnext();},);

Redirect

server.get("/redirect_example",async(ctx: any,next: any)=>{ctx.redirect("/my_custom_url_or_path");awaitnext();},);

Middleares

This project has a standard set of middleware useful for most cases.

Logger

Example:

server.use(logger());

You can pass custom log file:

logger("./my_dir/my_custom_log.txt");

Body Parsers res and req

Example:

server.post("/example_parsers",res("json"),//Response parserreq("json"),//Request parserasync(ctx: any,next: any)=>{console.log(ctx.body);//the original (no parser) body is in ctx.req.bodyctx.res.body={msg: "json response example"};awaitnext();},);

The current supported options for "req" are: "arrayBuffer", "blob", "formData", "json", "text".

The current supported options for "res" are: "json", "html", "javascript".

If there are no parsers for your data, don't worry, you can handle the data manually, Ex:

server.post("/upload",async(ctx: any,next: any)=>{ctx.res.headers.set("Content-Type","application/json",);constdata=awaitexCustomParseBody(ctx.req.body);//do what you want with ctx.req.bodyctx.res.body=JSON.stringify({msg: "ok"});// //ctx.res.body can also be other data types such as streams, bytes and etc.awaitnext();},);

Rate Limit

Example:

server.use(rateLimit());

OPTIONS (with default values):

rateLimit({attempts: 30,interval: 10,maxTableSize: 100000,id: (ctx: Context)=>JSON.stringify(ctx.conn.remoteAddr),});

Serve Static

Example (must end with "/*"):

server.get("/pub/*",serveStatic("./pub"),);

Set Cors

Example:

server.options("/example_cors",setCORS());//enable pre-fligh requestserver.get("/example_cors",setCORS(),async(ctx,next)=>{awaitnext();},);

You can pass valid hosts to cors function:

setCORS("http://my.custom.url:8080");

Token

This middleware is encapsulated in an entire static class. It uses Bearer Token and default options with the "HS256" algorithm, and generates a random secret when starting the application (you can also set a secret manually). Ex:

server.get("/example_verify_token",//send token to server in Header => Authorization: Bearer TOKENToken.middleware,async(ctx,next)=>{console.log(ctx.extra.tokenPayload);console.log(ctx.extra.token);awaitnext();},);

Generate Token ex:

awaitToken.generate({user_id: "172746"},null);//null to never expire, this parameter defaults to "1h"

Set secret ex:

Token.setSecret("a3d2r366wgb3dh6yrwzw99kzx2");//Do this at the beginning of your application

Get token payload out of middleware:

awaitToken.getPayload("YOUR_TOKEN_STRING");//Ex: use for get token data from token string in URL parameter.

You can also use the static method Token.setConfigs.

Redirect

Ex:

server.get("/my_url_1",redirect("/my_url_2"),//or the full url);

Session

Ex:

server.use(session());//in routes:server.get("/session_example",async(ctx,next)=>{console.log(ctx.extra.session);//get session datactx.extra.session.foo="bar";//set session dataawaitnext();},);

OPTIONS (with default values):

session(engine: SessionStorageEngine = new SQLiteStorageEngine(60)) //60 is 60 minutes to expire session

Proxy

Ex:

server.use(proxy({url: "https://my-url-example.com"}));

In routes:

server.get("/proxy_example",async(ctx,next)=>{console.log(ctx.req);//req has changed as it now points to the proxyconsole.log(ctx.res);//res has changed because now it has the proxy answer//OR if replaceReqAndRes = falseconsole.log(ctx.extra.proxyReq);console.log(ctx.extra.proxyRes);awaitnext();},);

Or proxy in specific route:

server.get("/proxy_example",proxy({url: "https://my-url-example.com/proxy_ex2",replaceProxyPath: false,//specific proxy route for the route "/proxy_example"}),async(ctx,next)=>{console.log(ctx.req);//req has changed as it now points to the proxyconsole.log(ctx.res);//res has changed because now it has the proxy answerawaitnext();},);

Conditional proxy:

server.get("/proxy_example",proxy({url: "https://my-url-example.com/proxy_ex3",condition: (ctx)=>{if(ctx.url.searchParams.get("foo")){returntrue;}else{returnfalse;}},}),async(ctx,next)=>{console.log(ctx.extra.proxied);//will be true if proxy condition is trueconsole.log(ctx.req);//req has changed as it now points to the proxyconsole.log(ctx.res);//res has changed because now it has the proxy answerawaitnext();},);

OPTIONS (with default values):

proxy(url: string, replaceReqAndRes: true, replaceProxyPath: true, condition: : (ctx: Context) => true )

Do not use "res body parsers" with 'replaceReqAndRes: true' (default) !!!

If you don't use Request body information before the proxy or in your condition, don't use "req body parsers" as this will increase the processing cost !!!

Upload

This middleware automatically organizes uploads to avoid file system problems and create dirs if not exists, perform validations and optimizes ram usage when uploading large files using Deno standard libraries!

Upload usage

Ex:

.post("/upload",upload(),async(ctx: any,next: any)=>{ ...

Ex (with custom options):

.post("/upload",upload({path: 'uploads_custom_dir',extensions: ['jpg','png'],maxSizeBytes: 20000000,maxFileSizeBytes: 10000000,saveFile: true,readFile: false,useCurrentDir: true}),async(ctx: any,next: any)=>{ ...

Request must contains a body with form type "multipart/form-data", and inputs with type="file".

Ex (pre validation):

.post("/pre_upload",preUploadValidate(["jpg","png"],20000000,10000000),async(ctx: any,next: any)=>{ ...

Pre validation options:

preUploadValidate(
extensions: Array<string> = [],
maxSizeBytes: number = Number.MAX_SAFE_INTEGER,
maxFileSizeBytes: number = Number.MAX_SAFE_INTEGER,
)

Upload examples in frontend and backend

Below an frontend example to work with AJAX, also accepting type="file" multiple:

varfiles=document.querySelector("#yourFormId input[type=file]").files;varname=document.querySelector("#yourFormId input[type=file]").getAttribute("name",);varform=newFormData();for(vari=0;i<files.length;i++){form.append(`${name}_${i}`,files[i]);}varres=awaitfetch("/upload",{//Fetch API automatically puts the form in the format "multipart/form-data".method: "POST",body: form,}).then((response)=>response.json());console.log(res);//VALIDATIONS --------------varvalidationData={};for(vari=0;i<files.length;i++){varnewObj={//newObj is needed, JSON.stringify(files[i]) not work"name": files[i].name,"size": files[i].size,};validationData[`${name}_${i}`]=newObj;}varvalidations=awaitfetch("/pre_upload",{method: "POST",headers: {"Content-Type": "application/json"},body: JSON.stringify(validationData),}).then((response)=>response.json());console.log(validations);

In Deno (backend):

import{preUploadValidate,res,Server,upload,}from"https://deno.land/x/faster/mod.ts";constserver=newServer();server.post("/upload",res("json"),upload({path: "my_uploads",extensions: ["jpg","png"],maxSizeBytes: 20000000,maxFileSizeBytes: 10000000,}),async(ctx: any,next: any)=>{ctx.res.body=ctx.extra.uploadedFiles;awaitnext();},);server.post("/pre_upload",res("json"),preUploadValidate(["jpg","png"],20000000,10000000),async(ctx: any,next: any)=>{ctx.res.body={msg: "Passed upload validations."};awaitnext();},);server.get("/",res("html"),async(ctx: any,next: any)=>{ctx.res.body=` <form id="yourFormId" enctype="multipart/form-data" action="/upload" method="post"> <input type="file" name="file1" multiple><br> <input type="submit" value="Submit"> </form> `;awaitnext();});awaitserver.listen({port: 80});

All imports

import{Context,ContextResponse,//typeCookie,//type, alias to deno stddeleteCookie,//alias to deno stdgetCookies,//alias to deno stdlogger,NextFunc,//typeParams,//typeparse,preUploadValidate,ProcessorFunc,//typeproxy,rateLimit,redirect,req,res,Route,//typeRouteFn,//typeServer,serveStatic,Session,//typesession,SessionStorageEngine,setCookie,//alias to deno stdsetCORS,SQLiteStorageEngine,Token,upload,}from"https://deno.land/x/faster/mod.ts";

Example Deploy

Example of depoly application "my-deno-app" in ubuntu environment. Change the "my-deno-app" and the directories to yours.

Create service

Create run script ("run-server.sh") in your application folder with the content:

#!/bin/bash
/home/ubuntu/.deno/bin/deno run --allow-net --allow-read --allow-write /home/ubuntu/my-deno-app/app.ts

Give permission to the script:

chmod +x run-server.sh

Create service files:

sudo touch /etc/systemd/system/my-deno-app.servicesudo nano /etc/systemd/system/my-deno-app.service

In "my-deno-app".service (change the "Description", "WorkingDirectory" and "ExecStart" to yours):

[Unit]
Description=My Deno App
[Service]
WorkingDirectory=/home/ubuntu/my-deno-app
ExecStart=/home/ubuntu/my-deno-app/run-server.sh
TimeoutSec=30
Restart=always
RestartSec=1
[Install]
WantedBy=multi-user.target

If your application needs to wait for another service to start, such as the mongodb database, you can use the ´[Unit]´ section like this:

[Unit]
Description=My Deno App
After=mongod.service

Enable the "my-deno-app" service:

sudo systemctl enable my-deno-app.service

To start and stop the "my-deno-app" service:

sudo service my-deno-app stopsudo service my-deno-app start

See log:

journalctl -u my-deno-app.service --since=today -e

Configure HTTPS

Install certbot:

sudo apt install certbot

Generate certificates:

sudo certbot certonly --manual

In your application, to verify the domain you will need something like:

import{Server,serveStatic}from"https://deno.land/x/faster/mod.ts";constserver=newServer();server.get(//verify http://<YOUR_DOMAIN>/.well-known/acme-challenge/<TOKEN>"/.well-known/*",serveStatic("./.well-known"),// ex: create .well-known folder in yor app folder);awaitserver.listen({port: 80});

To run your application on https (Change "yourdomain.link" to your domain):

awaitserver.listen({port: 443,certFile: "/etc/letsencrypt/live/yourdomain.link/fullchain.pem",keyFile: "/etc/letsencrypt/live/yourdomain.link/privkey.pem",});

The certificate is valid for a short period. Set crontab to update automatically. The command 'sudo crontab' opens roots crontab, all commands are executed as sudo. Do like this:

sudo crontab -e

Add to the end of the file (to check and renew if necessary every 12 hours):

0 */12 * * * certbot -q renew --standalone --preferred-challenges=http

Or also to check every 7 days:

0 0 * * 0 certbot -q renew --standalone --preferred-challenges=http

About

Author: Henrique Emanoel Viana, a Brazilian computer scientist, enthusiast of web technologies, cel: +55 (41) 99999-4664. URL: https://sites.google.com/site/henriqueemanoelviana

Improvements and suggestions are welcome!

About

A fast and optimized middleware server with an absurdly small amount of code (300 lines) built on top of Deno's native HTTP APIs with no dependencies. It also has a collection of useful middlewares: log file, serve static, CORS, session, rate limit, token, body parsers, redirect, proxy and handle upload. In "README" there are examples of all the re

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages