2.2 KiB
hot
Supports hot reloading of Angel servers on file changes. This is faster and
more reliable than merely reactively restarting a Process
.
This package only works with the Angel framework.
Installation
In your pubspec.yaml
:
dependencies:
angel_framework: ^2.0.0-alpha
angel_hot: ^2.0.0
Usage
This package is dependent on the Dart VM service, so you must run
Dart with the --observe
(or --enable-vm-service
) argument!!!
Usage is fairly simple. Pass a function that creates an Angel
server, along with a collection of paths
to watch, to the HotReloader
constructor. The rest is history!!!
The recommended pattern is to only use hot-reloading in your application entry point. Create your Angel
instance
within a separate function, conventionally named createServer
.
Using this in production mode is not recommended, unless you are specifically intending for a "hot code push" in production..
You can watch:
- Files
- Directories
- Globs
- URI's
package:
URI's
import 'dart:async';
import 'dart:convert';
import 'dart:io';
import 'package:angel_framework/angel_framework.dart';
import 'package:angel_hot/angel_hot.dart';
import 'src/foo.dart';
main() async {
var hot = new HotReloader(createServer, [
new Directory('config'),
new Directory('lib'),
new Directory('web'),
new Directory('src'),
'bin/server.dart',
Uri.parse('some_file.dart'),
Uri.parse('package:angel_hot/angel_hot.dart')
]);
var server = await hot.startServer('127.0.0.1', 3000);
print(
'Hot server listening at http://${server.address.address}:${server.port}');
}
Future<Angel> createServer() async {
var app = new Angel();
..injectSerializer(JSON.encode);
app.get('/', (req, res) => {'hello': 'hot world!'});
app.post('/foo/bar', (req, res) async {
var result = await someLengthyOperation();
return {'status': result};
});
app.fallback((req, res) => throw new AngelHttpException.notFound());
return app;
}