An open API service indexing awesome lists of open source software.

https://github.com/angel-dart/seeder

Straightforward data seeder for Angel services.
https://github.com/angel-dart/seeder

angel angel-framework seeder

Last synced: 4 months ago
JSON representation

Straightforward data seeder for Angel services.

Awesome Lists containing this project

README

          

# angel_seeder

[![version 1.0.](https://img.shields.io/pub/v/angel_seeder.svg)](https://pub.dartlang.org/packages/angel_seeder)
[![build status](https://travis-ci.org/angel-dart/seeder.svg?branch=master)](https://travis-ci.org/angel-dart/seeder)

Straightforward data seeder for Angel services.
This is an almost exact port of [feathers-seeder](https://github.com/thosakwe/feathers-seeder),
so its documentation should almost exactly match up here.
Fortunately, I was also the one who made `feathers-seeder`, so if you ever need assistance,
file an issue.

# Example
```dart
var app = new Angel()..use('/todos', new TodoService());

await app.configure(seed(
'todos',
new SeederConfiguration(delete: false, count: 10, template: {
'text': (Faker faker) => 'Clean your room, ${faker.person.name()}!',
'completed': false
})));
```

**NOTE**: Don't *await* seeding at application startup; that's too slow.
Instead, run it asynchronously.