ngdart 1.0.1 ngdart: ^1.0.1 copied to clipboard
A command-line tool for creating and managing AngularDart projects.
Use this package as an executable
Install it
You can install the package from the command line:
dart pub global activate ngdart
Use it
The package has the following executables:
$ ngdart
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add ngdart
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
ngdart: ^1.0.1
Alternatively, your editor might support dart pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:ngdart/constants.dart';
import 'package:ngdart/models/file_contents.dart';
import 'package:ngdart/models/template_file.dart';
import 'package:ngdart/ngdart_command_runner.dart';
import 'package:ngdart/util/ansipen.dart';
import 'package:ngdart/util/builder.dart';
import 'package:ngdart/util/conversion.dart';
import 'package:ngdart/util/generator.dart';