Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/angel-dart-archive/framework
moved to angel-dart/angel/packages/framework
https://github.com/angel-dart-archive/framework
angel angel-framework
Last synced: 3 months ago
JSON representation
moved to angel-dart/angel/packages/framework
- Host: GitHub
- URL: https://github.com/angel-dart-archive/framework
- Owner: angel-dart-archive
- License: mit
- Archived: true
- Created: 2016-02-28T12:18:56.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-02-05T23:03:36.000Z (almost 5 years ago)
- Last Synced: 2024-06-24T01:40:35.908Z (5 months ago)
- Topics: angel, angel-framework
- Language: Dart
- Homepage: https://github.com/angel-dart/angel/tree/master/packages/framework
- Size: 1.1 MB
- Stars: 48
- Watchers: 5
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# angel_framework
[![Pub](https://img.shields.io/pub/v/angel_framework.svg)](https://pub.dartlang.org/packages/angel_framework)
[![build status](https://travis-ci.org/angel-dart/framework.svg)](https://travis-ci.org/angel-dart/framework)A high-powered HTTP server with support for dependency injection, sophisticated routing and more.
This is the core of the [Angel](https://github.com/angel-dart/angel) framework.
To build real-world applications, please see the [homepage](https://angel-dart.dev).```dart
import 'package:angel_container/mirrors.dart';
import 'package:angel_framework/angel_framework.dart';main() async {
var app = Angel(reflector: MirrorsReflector());// Index route. Returns JSON.
app.get('/', (req, res) => res.write('Welcome to Angel!'));
// Accepts a URL like /greet/foo or /greet/bob.
app.get(
'/greet/:name',
(req, res) {
var name = req.params['name'];
res
..write('Hello, $name!')
..close();
},
);
// Pattern matching - only call this handler if the query value of `name` equals 'emoji'.
app.get(
'/greet',
ioc((@Query('name', match: 'emoji') String name) => '😇🔥🔥🔥'),
);
// Handle any other query value of `name`.
app.get(
'/greet',
ioc((@Query('name') String name) => 'Hello, $name!'),
);
// Simple fallback to throw a 404 on unknown paths.
app.fallback((req, res) {
throw AngelHttpException.notFound(
message: 'Unknown path: "${req.uri.path}"',
);
});var http = AngelHttp(app);
var server = await http.startServer('127.0.0.1', 3000);
var url = 'http://${server.address.address}:${server.port}';
print('Listening at $url');
print('Visit these pages to see Angel in action:');
print('* $url/greet/bob');
print('* $url/greet/?name=emoji');
print('* $url/greet/?name=jack');
print('* $url/nonexistent_page');
}
```