Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/renggli/dart-seaside
Code accompanying the blog article "Seaside in under 100 lines of Dart code".
https://github.com/renggli/dart-seaside
dart seaside
Last synced: 3 months ago
JSON representation
Code accompanying the blog article "Seaside in under 100 lines of Dart code".
- Host: GitHub
- URL: https://github.com/renggli/dart-seaside
- Owner: renggli
- License: mit
- Created: 2020-07-26T11:01:46.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-04-26T07:51:51.000Z (9 months ago)
- Last Synced: 2024-05-09T10:58:52.969Z (8 months ago)
- Topics: dart, seaside
- Language: Dart
- Homepage: https://www.lukas-renggli.ch/blog/seaside-dart
- Size: 39.1 KB
- Stars: 10
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://github.com/renggli/dart-seaside/actions/workflows/dart.yml/badge.svg?branch=main)](https://github.com/renggli/dart-seaside/actions/workflows/dart.yml)
[![GitHub Issues](https://img.shields.io/github/issues/renggli/dart-seaside.svg)](https://github.com/renggli/dart-seaside/issues)
[![GitHub Forks](https://img.shields.io/github/forks/renggli/dart-seaside.svg)](https://github.com/renggli/dart-seaside/network)
[![GitHub Stars](https://img.shields.io/github/stars/renggli/dart-seaside.svg)](https://github.com/renggli/dart-seaside/stargazers)
[![GitHub License](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/renggli/dart-seaside/main/LICENSE)This is the code accompanying the blog articles
1. [Seaside in under 100 lines of Dart code](https://www.lukas-renggli.ch/blog/seaside-dart), and
2. [Adding call/answer in under 35 lines of Dart code](https://www.lukas-renggli.ch/blog/call-answer-dart).To try locally, [install Dart](https://dart.dev/) and execute the following commands:
```bash
git clone https://github.com/renggli/dart-seaside.git
cd dart-seasidedart pub update
dart run bin/server.dart
```In your browser navigate to the list of examples at http://localhost:8080/.
As always, this is under the [MIT License](https://raw.githubusercontent.com/renggli/dart-seaside/master/LICENSE).