Skip to content

DarkMalwre/Exolix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Exolix Banner C# Real-Time Framework

Why

Why Exolix? Exolix is a C# framework that allows you to develop API applications without needing too many external dependencies. Exolix keeps its consistancy to eliminate breaking changes!

Links

Simple Usage Example

This example will show how to create a server with exolix!

using Exolix.Terminal;

class MainFile 
{
	public static void Main(string[] args)
	{
		logger.info("Hello, Exolix!");
		// configure Exolix API host server settings
        	ApiHost server = new ApiHost(new ApiHostSettings { 
            		Port = 4040
        	});
	server.OnReady(() =>
        {
            Logger.Success("Server is ready");
            // Check for incomming connection to the server
            server.OnOpen((con) =>
            {
	    // code for when a connection is made (;
            });
        });
	//run the server
        server.Run();
	}
}

Links

About

C# Real-Time Framework

Resources

Stars

Watchers

Forks

Packages

No packages published