angel3_file_service 7.0.0 angel3_file_service: ^7.0.0 copied to clipboard
Angel service that persists data to a file on disk, stored as a JSON list.
import 'package:angel3_file_service/angel3_file_service.dart';
import 'package:angel3_framework/angel3_framework.dart';
import 'package:file/local.dart';
void configureServer(Angel app) async {
// Just like a normal service
app.use(
'/api/todos',
JsonFileService(const LocalFileSystem().file('todos_db.json')),
);
}