Skip to content

ivbeck/file-deno

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

file-deno 🦖

A lightweight and fast fileserver written in Typescript using the Deno Interpreter.

Notice: Only works on HTTP, HTTPS not supported natively

To get the server to run properly, I recommend using NGINX with a custom server config

server {
  location / {
    proxy_pass http://localhost:3000;
  }
  server_name example.example.com;
}

Running the server

The server requires the permission flags for net and read, it can be run from shell using:

deno run --allow-net --allow-read main.ts

About

A lightweight and fast fileserver written in Typescript using the Deno Interpreter.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published