Security News
UK Officials Consider Banning Ransomware Payments from Public Entities
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
connect-b2g
Advanced tools
Connect middleware that delivers an application manifest compatible with Mozilla's Open Web Apps initiative
Connect middleware that delivers an application manifest compatible with Mozilla's Open Web Apps initiative
npm install connect-b2g
Open Web Apps are web apps that are installable on Mozilla's Boot 2 Gecko Operating System.
Any website can be installed as an app on B2G but it needs to provide a manifest file.
The manifest is a text file containing a json document. It can have any name but must have the extension .webapp
.
It will be requested from the webroot by the client device, much like a favicon.
Example: http://domain.com/manifest.webapp
To find out more about creating Boot to Gecko Apps go to the Mozilla Developer Network
This simple connect middleware delivers the mainfest from a given file path.
This middleware does not enforce the manifest schema, format or content. Read about these topics here.
Much like any other connect middleware
var connect = require('connect');
var b2g = require('connect-b2g');
var app = connect()
.use( b2g( 'path/to/manifest.webapp' ) )
.listen(3000);
To run tests you need to install mocha and request.
sudo npm install -g mocha
npm install request
mocha
This project is intended as a utility middleware for B2G app developers.
As such, whenever new features are added to the specs, they will be implemented here.
Feel free to send me feedback and to contribute to this project.
FAQs
Connect middleware that delivers an application manifest compatible with Mozilla's Open Web Apps initiative
The npm package connect-b2g receives a total of 0 weekly downloads. As such, connect-b2g popularity was classified as not popular.
We found that connect-b2g 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
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.