A Dart package to interact with the HTTP API of the free services of the Deta plataform.
🚨 WARNING 🚨 This client should only be used on the server side.
Check the full example here.
Add to dependencies on pubspec.yaml
:
dependencies:
deta: <version>
We declare class Deta, which receives our private credential as a parameter.
The client
parameter can receive two different implementations DioClientDetaApi
or HttpClientDetaApi
, you need to add to its dependencies the one you prefer.
- DioClientDetaApi used by the HTTP client of the dio package.
- HttpClientDetaApi used by the HTTP client of the http package.
final deta = Deta(projectKey: 'projectKey', client: DioClientDetaApi(dio: Dio()));
🚨 WARNING 🚨
Your projectKey
is confidential and meant to be used by you. Anyone who has your project key can access your database. Please, do not share it or commit it in your code.
DetaBase
is a fully-managed, fast, scalable and secure NoSQL database with a focus on end-user simplicity.
We define our DetaBase
, with witch we are going to interact through the base
method that receives the name of the DetaBase
as a parameter. In case not exist it will be created instantly on first use, you can create as many DetaBase
as you need.
A DetaBase
instance is a collection of data, not unlike a Key-Value store, a MongoDB collection or a PostgreSQL/MySQL table.
final detabase = deta.base('lenguages');
Save an item. It will update an item if the key already exists.
await detabase.put({
'key': 'dart-g',
'name': 'Dart',
'description':
'Dart is a general-purpose programming language that adds strong '
'support for modularity, co-variant return types, and a strong '
'emphasis on type safety.',
'creator': 'Google',
'year': 2012,
});
Saves a list the elements, this list can only have a maximum of 20 element.
await detabase.putMany(
items: lenguages.map((lenguage) => lenguage.toJson()).toList(),
);
Saves an element like put
, with the difference that if this element exists in DetaBase
it will throw an DetaObjectException
. The key
required that are part of the elemet to be saved.
await detabase.insert({
'key': 'r-f',
'name': 'R',
'description': 'R is a programming language and software environment '
'for statistical computing and graphics.',
'creator': 'R Foundation',
'year': 1995,
});
Update the element from the supplied key
, you have to pass the whole element, both the updated and unchanged parameters.
await detabase.update(
key: 'ruby-ym',
item: <String, dynamic>{
'key': 'ruby-ym',
'name': 'Ruby',
'description': 'Ruby is a dynamic, open source, general-purpose '
'programming language with a focus on simplicity and productivity.',
'creator': 'Yukihiro Matsumoto',
'year': 1995,
},
);
Get a spesific element form the key.
final item = await detabase.get('dart-g');
Delete a spesific element from the key.
final wasDeleted = await detabase.delete('ruby');
Return all saved items if no query
is specified.
final all = await detabase.fetch();
Return all element that matched the indicated query
.
final result = await detabase.fetch(
query: [DetaQuery('year').lessThanOrEqualTo(2000).and('name').prefix('C')],
);
To run all unit tests use the following command:
flutter test --coverage --test-randomize-ordering-seed random
To view the generated coverage report you can use coverde.
# Generate Coverage Report
$ coverde report
A Very Good Project created by Very Good CLI.