Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

firefox-versions

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

firefox-versions

Fetches the latest version for each Firefox release and pre-release channel.

  • 0.0.3
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-75%
Maintainers
1
Weekly downloads
 
Created
Source

Firefox Versions

A simple, probably stupid module that returns a hash containing the following things:

  • current shipping Firefox version
  • currently shipping Beta version
  • currently shipping Firefox Developer Edition ( aka 'aurora' )
  • likely Nightly version
  • current maximum version usable on AMO. If you want your add-on to be compatible with any pre-release version of Firefox, use this version.

Install

npm install firefox-versions

Use

var fxVersions = require('firefox-versions');
fxVersions.fetch(function(err, result) {
    if (err) throw err;
    console.log(result.firefox); // currently returns "34.0.5"
});

Sample data

{ 
    firefox: '34.0.5', // current release
    beta: '35.0b4', // current beta
    aurora: '36.0a2', // current Developer Edition
    nightly: '37.0a1', // likely current nightly version
    aom_max: '38.0' // max acceptable aom maxVersion
}

FAQs

Package last updated on 23 Mar 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc