Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wdestroier/asimox

A Dart web framework designed to create interactive web applications.
https://github.com/wdestroier/asimox

dart dart-web web-framework

Last synced: about 1 month ago
JSON representation

A Dart web framework designed to create interactive web applications.

Awesome Lists containing this project

README

        

# Asimox

## Overview
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.

## Try the example
Steps to run the provided example:
1. Clone the repository:
```bash
$ git clone https://github.com/wdestroier/asimox
```
2. Navigate to the example directory:
```bash
$ cd asimox/example
```
3. Install `webdev_proxy`:
```bash
$ dart pub global activate webdev_proxy
```
4. Run the example with `webdev_proxy`:
```bash
$ webdev_proxy serve -- example
```
5. Access the running website at [http://localhost:8080](http://localhost:8080) and after that check [http://localhost:8080/counter/click?start=10](http://localhost:8080/counter/click?start=10).

## Getting Started

1. Add the package to your `pubspec.yaml`:
```yaml
dependencies:
asimox: ^1.0.0
```
2. Import the package:
```dart
import 'package:asimox/asimox.dart';
```

## License
This project is licensed under the MIT License. See the LICENSE file for more information.