A List of Apps Built with Chromely - RupertAvery/Chromely GitHub Wiki

A List of Apps Built with Chromely

Table of Contents

ConverseTek
Single Executable File
Chromely.Mvc

ConverseTek

@mattkol I made a mod tool for BattleTech PC game with Chromely. I used it to hook into the game dlls in the C# side to allow me to reuse their deserialisation system for the in-game dialogue/conversation system. Then built a React based dialogue editor on the 'frontend' side.

The community love it. Thank you for making a great base for me to start on. You can see the project here: https://github.com/CWolfs/ConverseTek

conversetek-example

Single Executable File

How to build small Chromely "single executable" that downloads "Cef" and "CefSharp" files during the first launch. Chromely Small Single Executable. [Cef binaries downloads on first app launch.]

Thanks to @pkudrel for sharing this.

Chromely.Mvc

Chromely.Mvc is an add-on to Chromely that allows you to create controllers using ASP.NET MVC convention.

  • Use MVC's convention-based approach to writing and wiring up controllers.
  • Use .NET Core's built-in IServiceCollection for dependency injection.
  • Constructor and property injection on controller classes.
  • Controller classes are transient services - created for each request.
  • Annotate Controller action methods with HttpGet, HttpPost, etc.
  • Model binding, so you can create your action methods like this:
public IEnumerable<WeatherData> GetWeatherForecast(DateTime date, string location)