Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/freaktechnik/get-firefox
Download the latest Firefox Nightly from the command line.
https://github.com/freaktechnik/get-firefox
cli download firefox
Last synced: about 2 months ago
JSON representation
Download the latest Firefox Nightly from the command line.
- Host: GitHub
- URL: https://github.com/freaktechnik/get-firefox
- Owner: freaktechnik
- License: mpl-2.0
- Created: 2015-08-16T16:38:06.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2024-10-21T14:01:51.000Z (2 months ago)
- Last Synced: 2024-10-21T22:49:39.238Z (2 months ago)
- Topics: cli, download, firefox
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/get-firefox
- Size: 3.24 MB
- Stars: 7
- Watchers: 3
- Forks: 4
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# get-firefox
[![codecov](https://codecov.io/gh/freaktechnik/get-firefox/graph/badge.svg?token=R7n92FrUF8)](https://codecov.io/gh/freaktechnik/get-firefox)
Download the latest Firefox from the command line. Supports almost any release,
except on Android.This package works mostly without relying on
[archive.mozilla.org](https://archive.mozilla.org).## Usage
### In the command line
Run `npx get-firefox --platform android --target fennec.apk --architecture arm-v15`
in the console to download the latest Firefox nightly for Android as `fennec.apk`.Run `npx get-firefox --help` for a complete description of possible options or `npx get-firefox --list`
for a list of all available platforms, branches and architectures.The extraction option can not extract `.dmg` or `.exe` packages.
Use `hdiutil`or similar to access the contents of the `.dmg`.### As node module
```js
import { getDefaultSystem, getContainer, downloadFirefox, check, extract, PLATFORMS } from "get-firefox";
```The main module implements a few public methods, see the binary file for their usage.
## Similar tools
- https://github.com/mozilla/mozdownload
- https://github.com/freaktechnik/moz-download-url## License
The source code in this package is licensed under the MPL-2.0. A copy of the
license text can be found in the [LICENSE](LICENSE) file.