Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
mozilla-get-url
Advanced tools
Utility to get the url of a particular version/release of a mozilla product (like firefox/b2g)
Find the url where a given mozilla product lives for all kinds of branches / releases / pre-releases.
Inspired by (firefox-get)[https://github.com/jsantell/node-firefox-get] which I initially contributed to for the b2g-support... The primary difference is mozilla-get-url is designed to handle most mozilla products up front and uses ftp rather then html scraping.
var locate = require('mozilla-get-url').locate;
var options = {
/*
- required
- examples: 'win32', 'mac', 'linux-i686', 'linux-x86_64'
*/
os: 'mac',
/*
- optional
- default: 'latest'
- examples: '17.0', '3.6'
this only is used with releases (not channel opts, not tinderbox opts)
*/
version: '17.0',
/*
- optional
- default: 'en-US'
this only is used with releases (not channel opts, not tinderbox opts)
*/
language: 'en-US',
/*
- optional
- default: 'firefox'
- examples: 'firefox', 'b2g'
Gecko product... Only tested with firefox and b2g-desktop (b2g)
*/
product: 'firefox',
/**
- optional
- default: none
- examples: ['beta', 'aurora', 'nightly', 'mozilla-central']
"nightly" (as in built every 24 hours) builds on various channels.
*/
channel: null,
/**
- optional
- default: none
- examples: ['mozilla-central', 'mozilla-inbound', 'mozilla-inbound-b2g']
Latest and greatest (current) builds... These are the same builds used in TBPL test runs.
*/
tinderbox: null
};
locate(options, function(err, url) {
url; // => http url to the build
});
# get latest firefox
mozilla-get-url --os mac
# get latest b2g-desktop from mozilla central
mozilla-get-url --os mac --tinderbox mozilla-central --product b2g
FAQs
Utility to get the url of a particular version/release of a mozilla product (like firefox/b2g)
The npm package mozilla-get-url receives a total of 2 weekly downloads. As such, mozilla-get-url popularity was classified as not popular.
We found that mozilla-get-url demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
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.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.