https://github.com/plugfox/extension_type_demo
https://github.com/plugfox/extension_type_demo
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/plugfox/extension_type_demo
- Owner: PlugFox
- Created: 2024-06-01T15:23:35.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-01T16:58:18.000Z (almost 2 years ago)
- Last Synced: 2025-06-12T20:33:31.373Z (11 months ago)
- Language: Dart
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
A bare-bones Dart web app.
Uses [`package:web`](https://pub.dev/packages/web)
to interop with JS and the DOM.
## Running and building
To run the app,
activate and use [`package:webdev`](https://dart.dev/tools/webdev):
```
dart pub global activate webdev
webdev serve
```
To build a production version ready for deployment,
use the `webdev build` command:
```
webdev build
```
To learn how to interop with web APIs and other JS libraries,
check out https://dart.dev/interop/js-interop.