diff --git a/.gitignore b/.gitignore index 0f38482..aa883c8 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ package-lock.json config/config.json utils/ modules/consoleHelper/config.json +.DS_Store \ No newline at end of file diff --git a/README.md b/README.md index e6286b9..b22f8e0 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,29 @@

-

Revolution is a web server that I designed to be flexible to fit the needs of it's applications.

-

It is mainly used in my Screenshot server, EUS which was recently rewriten.

-

It's main design goal was to be modular.

-

- Setup -

+

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, it’s 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 +

Unzip the zip
+ Run the 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. +

+

Projects Revolution is used in

+EUS

\ No newline at end of file