Dart Embedder is a C++ project that embeds the Dart VM, allowing you to execute Dart files from within a C++ application.
- Embed the Dart VM directly into your C++ application
- Load and execute Dart scripts and files
- Extendable for custom integrations between C++ and Dart
- Automatic hot reloading
You can load Dart files and execute them via the embedded VM:
// Example C++ usage
DartEmbedder embedder;
embedder.loadFile("test.dart");
embedder.execute();Pull requests and issues are welcome! Feel free to open an issue to suggest features or report bugs.