Asimox is a Dart web framework designed to create interactive web applications with modern features such as incremental DOM, change detection, class-based HTML components and declarative UI.
Steps to run the provided example:
- Clone the repository:
$ git clone https://github.com/wdestroier/asimox
- Navigate to the example directory:
$ cd asimox/example
- Install
webdev_proxy
:$ dart pub global activate webdev_proxy
- Run the example with
webdev_proxy
:$ webdev_proxy serve -- example
- Access the running website at http://localhost:8080 and after that check http://localhost:8080/counter/click?start=10.
- Add the package to your
pubspec.yaml
:
dependencies:
asimox: ^1.0.0
- Import the package:
import 'package:asimox/asimox.dart';
- Install
webdev
:$ dart pub global activate webdev
- Run the build command:
$ webdev build
- Publish the files in the
your_project/build
directory.
This project is licensed under the MIT License. See the LICENSE file for more information.