# fxos-simulators

> Find bin files for FirefoxOS simulators

Latest version **0.3.0** (published 2014-09-18) · ISC license · 0 weekly downloads

## Install

```sh
npm install fxos-simulators
pnpm add fxos-simulators
yarn add fxos-simulators
bun add fxos-simulators
```

Provides the command `fxos-simulators`.

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.3.0 |
| Published | 2014-09-18 |
| First published | 2014-08-26 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Nicola Greco |
| Maintainers | nicola |
| Keywords | firefox, simulator, b2g, firefoxos, fxos |

## Links

- npm: https://www.npmjs.com/package/fxos-simulators
- Repository: https://github.com/nicola/fxos-simulators
- Issues: https://github.com/nicola/fxos-simulators/issues
- npm.io page: https://npm.io/package/fxos-simulators

## Dependencies (3)

- [async](https://npm.io/package/async.md) ^0.9.0
- [nomnom](https://npm.io/package/nomnom.md) ^1.8.0
- [cli-table](https://npm.io/package/cli-table.md) ^0.3.0

## Recent versions

- 0.3.0 (latest) — 2014-09-18
- 0.2.0 — 2014-09-15
- 0.1.1 — 2014-08-27
- 0.1.0 — 2014-08-26

## README

# fxos-simulators

Find Firefox OS simulators in your Firefox path

## Install

```sh
# Library
$ npm install fxos-simulators

# Command line
$ npm install -g fxos-simulators
```

## Usage

```javascript
var findSimulators = require('fxos-simulators');
findSimulators(function(err, simulators){
  console.log(simulators);
})
// [ { version: '2.1', path: '/Users/mozilla/Library/Application Support/Firefox/Profiles/x6kiu2xm.default/extensions/fxos_2_1_simulator@mozilla.org/b2g/B2G.app/Contents/MacOS/b2g-bin' } ]

```

or you can look for a specific version:

```javascript
var findSimulators = require('fxos-simulators');
findSimulators({version:'2.1'}, function(err, simulators){
  console.log(simulators);
})
// [ { version: '2.1', path: '/Users/mozilla/Library/Application Support/Firefox/Profiles/x6kiu2xm.default/extensions/fxos_2_1_simulator@mozilla.org/b2g/B2G.app/Contents/MacOS/b2g-bin' } ]

```

## Usage with command line

```sh
$ fxos-simulators
[ { version: '2.1',
    bin: '/Users/mozilla/.../b2g-bin',
    profile: '/Users/mozilla/.../fxos_2_1_simulator@mozilla.org/profile' } ]
```

```sh
$ fxos-simulators --help
Usage: fxos-simulators [options]

Options:
   --version   Print version and exit
```

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