1
0
Fork 0
forked from svrjs/svrjs
SVR.JS - a web server running on Node.JS
This repository has been archived on 2024-11-10. You can view files and clone it, but cannot push or open issues or pull requests.
Find a file
2024-09-01 12:24:39 +02:00
.github/workflows Update main.yml 2024-06-22 09:16:06 +02:00
assets Change logo.png to one with "SVR.JS" name, adjust index.ejs for the new logo file, and adjust README.md 2024-08-31 14:15:55 +02:00
src Convert one more string to template string 2024-09-01 09:51:29 +02:00
templates Change logo.png to one with "SVR.JS" name, adjust index.ejs for the new logo file, and adjust README.md 2024-08-31 14:15:55 +02:00
tests Lint out the static file serving and directory listing middleware test script 2024-08-31 20:50:10 +02:00
utils Fix or ignore all ESLint errors 2024-08-27 11:28:24 +02:00
.gitignore Update .gitignore 2024-09-01 09:09:16 +02:00
esbuild.config.js Make the build script also pack empty directories into zip file 2024-08-30 08:06:09 +02:00
eslint.config.js Change ESLint configuration to use CommonJS modules instead of ES modules. 2024-08-25 14:27:22 +02:00
jest.config.js Rewritten SVR.JS from scratch - the build system for the new SVR.JS is set up, but the source is just placeholders. 2024-08-23 17:05:10 +02:00
LICENSE Add LICENSE file 2024-08-26 08:00:04 +02:00
package-lock.json Update dependencies 2024-08-30 22:48:53 +02:00
package.json Add test coverage npm script and add "coverage" folder to .gitignore 2024-08-30 22:18:22 +02:00
README.md Change the link to GitHub repository in README.md to point to the "next" branch 2024-09-01 12:24:39 +02:00
svrjs.json Make change log for specific SVR.JS version generated by the build script 2024-08-27 10:49:36 +02:00

SVR.JS - a web server running on Node.JS
It's free as in freedom, scalable, secure, and configurable.

Static Badge Website Docker Pulls GitHub Repo stars X (formerly Twitter) Follow Mastodon Follow


Features

Static file handling

  • Static file serving (even above 2GB)
  • Directory listing serving
  • Protection against path traversal
  • Content-Range support (for non-HTML static files; also for HTML files from SVR.JS 3.15.1)
  • Serving from web root different than SVR.JS installation directory

Security

  • HTTPS support
  • HTTP/2 support
  • Built-in block list
  • Protection against HTTP authentication brute force attacks (from SVR.JS 3.4.8; enabled by default)
  • Ability to hide server version
  • OCSP stapling support (from SVR.JS 3.4.9)

Configuration and customization

  • Configurability via config.json file
  • Expandability via server-side JavaScript and mods
  • Ability to serve non-standard error pages
  • URL rewriting engine
  • Event driven architecture powered by Node.JS, along with clustering.

Compression and content delivery

  • Brotli, gzip and Deflate HTTP compression (Brotli supported since SVR.JS 3.4.11)
  • SNI (Server Name Indication) support
  • ETag support (from SVR.JS 3.6.1)
  • Reverse proxy functionality (requires reverse-proxy-mod SVR.JS mod)
  • Forward proxy functionality (requires forward-proxy-mod SVR.JS mod)

Authentication and access control

  • HTTP basic authentication

Gateway interfaces

  • CGI (Common Gateway Interface) support (requires RedBrick mod)
  • SCGI (Simple Common Gateway Interface) support (requires OrangeCircle mod)
  • JSGI (JavaScript Gateway Interface) support (requires YellowSquare mod)
  • PHP support (PHP-CGI with RedBrick mod or PHP-FPM with GreenRhombus mod)

Additional functionality

  • Logging
  • Ability to display IP addresses, from which originally request was made (from reverse proxies; via X-Forwarded-For)

Building SVR.JS

To build SVR.JS, you need Node.JS 18.0.0 or newer.

Before building SVR.JS, install the npm packages using this command:

npm install

After installing the packages, build SVR.JS with this command:

npm run build 

After running the command, you will get bundled SVR.JS script, around with built-in utilities and assets in the dist directory. You will also get a zip archive in out directory, that can be installed using SVR.JS installer

Installation (built from source)

To install SVR.JS you just built from the source code, you can install it via SVR.JS installer for GNU/Linux or manually.

If you want to install SVR.JS manually, you can read the server documentation.

If you want to install via SVR.JS installer for GNU/Linux, run this command:

curl -fsSL https://downloads.svrjs.org/installer/svr.js.installer.linux.20240509.sh > /tmp/installer.sh && sudo bash /tmp/installer.sh

You will be then prompted about the type of installation. Choose option “2” to install SVR.JS from the zip archive, and type in the path to the zip archive (hint: it is in the out directory).

After typing the path, you may be prompted to install dependencies via GNU/Linux distributions package manager. Proceed with the installation of dependencies.

After installation, SVR.JS should be listening at http://localhost.

SVR.JS documentation

You can read the SVR.JS documentation to get information on how to use SVR.JS.

npm scripts

  • To build SVR.JS along with the zip archive, run npm run build.
  • To check SVR.JS code for errors with ESLint, run npm run lint.
  • To fix and beautify SVR.JS code with ESLint and Prettier, run npm run lint:fix.
  • To run SVR.JS from the "dist" folder, run npm start.
  • To test SVR.JS itself, run npm run dev. This removes existing configuration.
  • To perform unit tests with Jest, run npm test.

File structure

The file structure for SVR.JS source code looks like this:

  • assets - files to copy into dist folder and to the archive
  • dist - contains SVR.JS, assets, and SVR.JS utiltiies
  • generatedAssets - assets generated by the build script
  • out - contains SVR.JS zip archive
  • src - contains SVR.JS source code
    • index.js - entry point
    • handlers - handlers for servers
    • middleware - built-in middleware for servers
    • res - resources
    • utils - utility functions
  • templates - EJS templates for build script to use
  • tests - Jest unit tests
    • middleware - tests for middleware
    • utils - unit tests for utility functions
  • utils - SVR.JS utilities (each utility has a single file)
  • esbuild.config.js - the build script
  • eslint.config.js - ESLint configuration
  • jest.config.js - Jest configuration
  • svrjs.json - SVR.JS version, name, documentation URL, and statistics server collection endpoint URL

Contribute

See SVR.JS contribution page for details.

License

This project is licensed under the MIT/X11 License - see the LICENSE file for details.