config_builder 2.2.0-alpha.1 copy "config_builder: ^2.2.0-alpha.1" to clipboard
config_builder: ^2.2.0-alpha.1 copied to clipboard

SDKDart
outdated

Build your app config via code generation from .json files in a type safe way

Pub Package

config_builder #

Build your app config via code generation from .json files. Type-Safe and no unnecessary IO/Parsing on app-startup!

Features #

  • Avoid storing your configuration in dart files
  • Avoid reading config files from disk and parsing them at app start
  • Type safe
  • Supports String, bool, int, double, Enums, Lists of these types, and nested objects of these types (see example)

How to use #

Add to your devDependencies (see example):

dev_dependencies:
  build_runner: <version>
  config_builder: <version>

Define your configuration model:

part 'config.g.dart'; //use the <filename>.g.dart, where <filename> is the name of this dart file

@BuildConfiguration([
  ConfigFile(configName: "devConfig", path: "lib/secrets/config.dev.json"),
  ConfigFile(configName: "testConfig", path: "lib/secrets/config.test.json"),
])
class Config{
  final String name;
  final int value;
  final Environment environment;

  const Config({this.name, this.value, this.environment});
}

Make sure the config-class has exactly one const constructor with exclusively required, named parameters. The generated code will assume that such a constructor exists.

If you use nested config classes, they also must have exactly one constructor exclusively required, named parameters.

Add your configuration-json file (must be saved in the lib/ directory):

{
  "name" : "devApp",
  "value": 1,
  "environment" : "Dev"
}

Run the code generation via

flutter pub run build_runner build

(flutter projects)
or

 dart run build_runner build 

(dart-only projects)

Now you can access your config object for example via different entry points in your app:

main.dev.dart:

import 'config.dart';

void main() => printConfig(devConfig);

main.test.dart:

import 'config.dart';

void main() => printConfig(testConfig);
5
likes
100
pub points
0%
popularity

Publisher

unverified uploader

Build your app config via code generation from .json files in a type safe way

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

analyzer, build, glob, source_gen

More

Packages that depend on config_builder