diff --git a/docs/DEVELOPER.md b/docs/DEVELOPER.md
index eacaaac854..d2ee7f542e 100644
--- a/docs/DEVELOPER.md
+++ b/docs/DEVELOPER.md
@@ -93,6 +93,17 @@ merged if the code is formatted properly and all tests are passing.
+### Testing changes against a local library/project
+
+Often for developers the best way to ensure the changes they have made work as expected is to run
+use changes in another library or project. To do this developers can build Angular locally, and
+using `yarn link` build a local project with the created artifacts.
+
+This can be done by running:
+```sh
+yarn ng-dev build-and-link
+```
+
## Formatting your source code
Angular uses [clang-format](https://clang.llvm.org/docs/ClangFormat.html) to format the source code.