The frontserver of the private RC-Network
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Go to file
Trivernis b40b890c1b Introducing Caching
SASS, HTML and other Files that are preprocessed will be stored in their 
processed form in the .cache directory for faster access. When a file is 
called more than 10 times in the last minute, it will be loaded into the 
memory and stays there for an hour. This allows the server to respond 
even faster to requests.
6 years ago
config Introducing Caching 6 years ago
glob Introducing Caching 6 years ago
lib Introducing Caching 6 years ago
res Introducing Caching 6 years ago
.gitignore Introducing Caching 6 years ago
LICENSE Restored Content 6 years ago
README.md Introducing Caching 6 years ago
server.js Introducing Caching 6 years ago

README.md

rcn-frontserver

About

This is the front-web-server of the Raspberry pi Communication network.

Modules

NodeJS

  • winston
  • pkg
  • perfy
  • jsdom
  • winston-daily-rotate-file
  • args-parser
  • node-sass

Embedded in the html-file

  • JQuery
  • Vue.js

Details

This web server uses folders for every type of file (depending on the file's ending) and routes to the folders. There are also global files, that are implemented in every html via dom-manipulation. The behaviour for every file extension can be configured in the config.json This server uses vue.js and jquery to make the website as interactive, as possible. This server works with https. To run it. it needs to have access to the folder .ssh in the same directory where a valid cert.pem and a valid key.pem is are existing. Specific directories can be mounted via the mounting parameter. The pattern is:

{
  "mounts": [
    {
      "mount": "mountpath",
      "path": "path"
    }
  ]
}

Roadmap

Done

ToDo

  • Mounting of folders or files on other locations (by using the config.json)
  • a package.json because it seems to be important nowadays