jaguar_hotreload 2.0.1 copy "jaguar_hotreload: ^2.0.1" to clipboard
jaguar_hotreload: ^2.0.1 copied to clipboard

outdated

Hot reloader for Dart

example/jaguar_hotreload_example.dart

// Copyright (c) 2017, teja. All rights reserved. Use of this source code
// is governed by a BSD-style license that can be found in the LICENSE file.

import 'dart:async';
import 'package:jaguar_hotreload/jaguar_hotreload.dart';

int count = 0;

Future<void> main() async {
  final reloader = HotReloader()..addPath('.');
  await reloader.addPackageDependencies();
  await reloader.go();

  Timer.periodic(Duration(seconds: 1), (_) {
    print(count++);
  });
}
4
likes
0
pub points
46%
popularity

Publisher

unverified uploader

Hot reloader for Dart

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

glob, vm_service_lib, watcher

More

Packages that depend on jaguar_hotreload