Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit 788ddca

Browse files
committed
docs(README.md): add note about JDK requirement
1 parent 9940f04 commit 788ddca

File tree

1 file changed

+17
-7
lines changed

1 file changed

+17
-7
lines changed

README.md

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The full tutorial can be found at https://docs.angularjs.org/tutorial.
2121

2222
### Node.js and Tools
2323

24-
- Get [Node.js][node-download].
24+
- Get [Node.js][node].
2525
- Install the tool dependencies: `npm install`
2626

2727

@@ -190,7 +190,7 @@ it whenever you like.
190190

191191
- Run `npm start`.
192192
- Navigate your browser to [http://localhost:8000/](http://localhost:8000/) to see the application
193-
- running.
193+
running.
194194

195195
### Unit Testing
196196

@@ -216,6 +216,13 @@ _Running the Application during Development_ section, above.
216216
set up to run the tests on Chrome directly. If you want to run against other browsers, you must
217217
modify the configuration at `e2e-tests/protractor-conf.js`.
218218

219+
**Note:**
220+
Under the hood, Protractor uses the [Selenium Standalone Server][selenium], which in turn requires
221+
the [Java Development Kit (JDK)][jdk] to be installed on your local machine. Check this by running
222+
`java -version` from the command line.
223+
224+
If JDK is not already installed, you can download it [here][jdk-download].
225+
219226

220227
## Application Directory Layout
221228

@@ -260,10 +267,13 @@ For more information on AngularJS, please check out https://angularjs.org/.
260267

261268
[angular-seed]: https://github.com/angular/angular-seed
262269
[bower]: http://bower.io/
263-
[git-home]: https://git-scm.com
264-
[git-setup]: https://help.github.com/articles/set-up-git/
265-
[google-phone-gallery]: http://web.archive.org/web/20131215082038/http://www.android.com/devices/
270+
[git-home]: https://git-scm.com/
271+
[git-setup]: https://help.github.com/articles/set-up-git
272+
[google-phone-gallery]: http://web.archive.org/web/20131215082038/http://www.android.com/devices
266273
[jasmine]: https://jasmine.github.io/
267-
[karma]: https://karma-runner.github.io
268-
[node-download]: https://nodejs.org/en/download/
274+
[jdk]: https://wikipedia.org/wiki/Java_Development_Kit
275+
[jdk-download]: http://www.oracle.com/technetwork/java/javase/downloads
276+
[karma]: https://karma-runner.github.io/
277+
[node]: https://nodejs.org/
269278
[protractor]: http://www.protractortest.org/
279+
[selenium]: http://docs.seleniumhq.org/

0 commit comments

Comments
 (0)