Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bryanbill/kitawi
A dart web library.
https://github.com/bryanbill/kitawi
dartlang framework web
Last synced: 3 months ago
JSON representation
A dart web library.
- Host: GitHub
- URL: https://github.com/bryanbill/kitawi
- Owner: bryanbill
- License: mit
- Created: 2023-02-21T14:54:31.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-06T18:56:48.000Z (5 months ago)
- Last Synced: 2024-10-01T16:39:58.441Z (4 months ago)
- Topics: dartlang, framework, web
- Language: Dart
- Homepage: https://pub.dev/packages/kitawi
- Size: 2.86 MB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Kitawi - A Dart Web Library
Kitawi is a Dart web library for building web user interfaces.
It's highly customizable and can be used with any Dart package that can run on the web.The project can be compiled to wasm for Chromium-based browsers, others use the dart2js compiler.
## Disclaimer
This project is still in development and is not yet ready for production use. The API is subject to change. Use at your own risk.
## Installation
1. Using the kitawi CLI:
```bash
dart pub global activate kitawi
```The run the following command to create a new project:
```bash
kitawi new my_project
```Get the dependencies:
```bash
cd my_project
kitawi get
```Add dependencies:
```bash
kitawi get http
```Run the project:
```bash
kitawi run
```Build the project:
```bash
kitawi build
```2. As a dependency in your `pubspec.yaml` file:
```yaml
dependencies:
kitawi: 0.1.3
```## Contributing
We welcome contributions to kitawi
## License
kitawi is licensed under the MIT License.