Revolution is a modular web server that I made to fit the needs of my projects
Go to file
the-basic-geek 52cb2af474 Merge branch 'readme-update' of https://github.com/tgpethan/Revolution into readme-update 2020-01-03 04:15:59 +00:00
config Put the Revolution stuff in the repo 2019-08-17 23:33:00 +01:00
misc Make the code more sane and improve the modularity of Revolution 2019-11-23 19:06:31 +00:00
modules Merge pull request #8 from tgpethan/add-erh-firstload-log 2020-01-02 23:21:56 +00:00
.gitignore Ignore .DS_Store 2020-01-03 04:11:51 +00:00
README.md Update README.md 2020-01-03 04:15:45 +00:00
index.js Add required module checks 2020-01-02 20:44:05 +00:00
package.json Remove items from the package.json that were used in EUS 2019-08-17 23:51:47 +01:00

README.md

What is Revolution?

Revolution is A modular Web framework, written in node.js , and built with the purpose of being a solid framework that apps can build upon to get up and running quickly and easily. Revolution is designed to make it easy to create the application you need, with no waste.

What is Revolution for?

Basically anything. As long as you want to try it, its probably possible.

How does Revolution work?

Revolution uses a set of modules to handle various functions, there are two modules included with the repo and builds, these being consoleHelper and example_request_handler. consoleHelper is a required module and as such the framework will not start without it, however example_request_handler can be removed without consequence and is there purely to help with module development.

How do modules work?

Modules are loaded in at runtime and are completely separate from each other. Each module has a prefix, for example the request handlers have the prefix “handle_console”. These prefixes determine the function of the modules and help the server to function.

How to use Revolution.

From source

git clone https://github.com/tgpethan/Revolution.git cd Revolution npm i node .

From build

Download latest build (https://github.com/tgpethan/Revolution/releases/latest) Unzip the zip Run revolution executable

How to install modules.

With modules you simply have to place the module inside the modules folder and start the server. The modules will automatically set themselves up and the server will start as normal.