# find-java-home

> Find JAVA_HOME on any system

Latest version **2.0.0** (published 2022-12-09) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install find-java-home
pnpm add find-java-home
yarn add find-java-home
bun add find-java-home
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 2.0.0 |
| Published | 2022-12-09 |
| First published | 2013-12-19 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 19.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 6 |
| Author | Joseph Spencer |
| Maintainers | jsdevel |
| Keywords | JAVA_HOME, find, java, home |

## Links

- npm: https://www.npmjs.com/package/find-java-home
- Repository: https://github.com/jsdevel/node-find-java-home
- Issues: https://github.com/jsdevel/node-find-java-home/issues
- npm.io page: https://npm.io/package/find-java-home

## Dependencies (2)

- [which](https://npm.io/package/which.md) ~1.0.5
- [winreg](https://npm.io/package/winreg.md) ~1.2.2

## Recent versions

- 2.0.0 (latest) — 2022-12-09
- 1.2.2 — 2021-08-12
- 1.2.1 — 2021-06-01
- 1.2.0 — 2021-04-08
- 1.1.0 — 2019-10-16
- 1.0.1 — 2019-09-03
- 1.0.0 — 2019-07-31
- 0.3.0 — 2019-07-31
- 0.2.0 — 2017-07-05
- 0.1.4 — 2016-11-28
- 0.1.3 — 2016-09-15
- 0.1.2 — 2015-02-11
- 0.1.1 — 2014-07-12
- 0.1.0 — 2014-07-12
- 0.0.7 — 2014-04-15
- … 5 more at https://npm.io/package/find-java-home/versions

## README

# node-find-java-home [![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Coveralls Status][coveralls-image]][coveralls-url]

Returns the location of JAVA_HOME as an absolute path on windows, mac, and
linux.  It runs asynchronously.

## Algorithm
1. This module will first attempt to check for JAVA_HOME.  If that's set it
simply returns that value.
2. On windows the registry is queried.
3. If neither of the previous methods worked, then the PATH is scanned for javac
4. On mac, the parent directory of javac is checked for a java_home binary.  If that binary exists then it is executed and the result is used
5. The grandparent directory of javac is used.  This is similar to `$(dirname $(dirname $(readlink -e $(which javac))))`

## Example
````javascript
require('find-java-home')(function(err, home){
  if(err)return console.log(err);
  console.log(home);
});

// OR
import * as findJavaHome from 'find-java-home';
findJavaHome({allowJre: true}, (err, home) => {
  if(err)return console.log(err);
  console.log(home);
});
````

## License
````
Copyright 2013 Joseph Spencer.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
````

[downloads-image]: http://img.shields.io/npm/dm/find-java-home.svg
[npm-url]: https://npmjs.org/package/find-java-home
[npm-image]: http://img.shields.io/npm/v/find-java-home.svg

[travis-url]: https://travis-ci.org/jsdevel/node-find-java-home
[travis-image]: http://img.shields.io/travis/jsdevel/node-find-java-home.svg

[coveralls-url]: https://coveralls.io/r/jsdevel/node-find-java-home
[coveralls-image]: http://img.shields.io/coveralls/jsdevel/node-find-java-home/master.svg

---
_Source: https://npm.io/package/find-java-home · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
