
Security News
Google’s OSV Fix Just Added 500+ New Advisories — All Thanks to One Small Policy Change
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
fx-marketplace-publish
Advanced tools
Easily publish an application on the Firefox Marketplace
Install the package in your project using npm install --save fx-marketplace-publish
.
options
: Object
The options object can have the following properties:
path
: Path to the webapp manifest in the web, or to a local packaged applicationconsumerKey
: Your consumer API key for the marketplace, inherited from node-firefox-marketplace, see their documentation for more info.consumerSecret
: Your consumer API secret for the marketplace, inherited from node-firefox-marketplace, see their documentation for more info.environment
: The marketplace you want to publish to, inherited from node-firefox-marketplace, see their documentation for more info. Defaults to "development"
type
: Optional webapp type specifier. Can be either "manifest"
or "packaged"
. Else the type is sniffed from the file extension in the path
property.Returns a Promise, which resolves when the app is successfully published on the firefox marketplace, and gets rejected whenever an error occurs, including a failed validation.
This code snippet publishes a webapp packaged in dist/my-webapp.zip
in the production environment of Firefox Marketplace (http://marketplace.firefox.com).
var { publish } = require("fx-marketplace-publish");
publish({
path: 'dist/my-webapp.zip',
consumerKey: "myConsumerKey",
consumerSecret: "myConsumerSecret",
environment: "production"
});
This project is licensed under the MPL-2.0.
FAQs
Easily publish an application on the Firefox Marketplace
The npm package fx-marketplace-publish receives a total of 0 weekly downloads. As such, fx-marketplace-publish popularity was classified as not popular.
We found that fx-marketplace-publish demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
Research
/Security News
175 malicious npm packages (26k+ downloads) used unpkg CDN to host redirect scripts for a credential-phishing campaign targeting 135+ organizations worldwide.
Security News
Python 3.14 adds template strings, deferred annotations, and subinterpreters, plus free-threaded mode, an experimental JIT, and Sigstore verification.