# angular-hint
**Repository Path**: mirrors_stevemao/angular-hint
## Basic Information
- **Project Name**: angular-hint
- **Description**: WIP: run-time hinting for AngularJS applications
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-09-26
- **Last Updated**: 2025-09-28
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# Angular Hint [](https://travis-ci.org/angular/angular-hint) [](https://codeclimate.com/github/angular/angular-hint)
Runtime hinting for AngularJS.
## Usage
Add `` to your app's `index.html` immediately after the
`angular.js` script.
This will load the set of AngularHint modules. Now you are set to use the `ng-hint` directive.
Including the `ng-hint` directive with no parameters will install all the AngularHint modules.
Example:
```html
...
...
```
For more fine-grained hints, you can use `ng-hint-include` to include certain AngularHint modules or
`ng-hint-exclude` to exclude certain AngularHint modules.
Example:
```html
...
...
```
```html
...
...
```
## Building
```shell
$ npm install
```
```shell
$ npm run build
```
##Example
In the `example` directory, you can find a sample application that appears
superficially correct but violates many Angular best practices. When AngularHint is in operation
it produces hints for correcting the sample application. In the `correctExample` directory
there is an improved version of the sample application.
## See Also
AngularHint is composed of several small modules that you may want to use individually:
* [AngularHintControllers](https://github.com/angular/angular-hint-controllers)
* [AngularHintDirectives](https://github.com/angular/angular-hint-directives)
* [AngularHintDom](https://github.com/angular/angular-hint-dom)
* [AngularHintEvents](https://github.com/angular/angular-hint-events)
* [AngularHintInterpolation](https://github.com/angular/angular-hint-interpolation)
* [AngularHintModules](https://github.com/angular/angular-hint-modules)
AngularHint uses [AngularHintLog](https://github.com/angular/angular-hint-log) to provide
logging functionality.
## Interested in Contributing?
See the [Contributing Guidelines](https://github.com/angular/angular-hint/blob/master/CONTRIBUTING.md)
## License
Apache 2.0