angel3_file_service 4.0.1 angel3_file_service: ^4.0.1 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';
configureServer(Angel app) async {
// Just like a normal service
app.use(
'/api/todos',
new JsonFileService(const LocalFileSystem().file('todos_db.json')),
);
}