Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/wdestroier/asimox
- Owner: Wdestroier
- License: mit
- Created: 2024-10-07T08:18:33.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-12-11T10:17:59.000Z (about 1 month ago)
- Last Synced: 2024-12-11T11:20:45.640Z (about 1 month ago)
- Topics: dart, dart-web, web-framework
- Language: Dart
- Homepage:
- Size: 101 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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.