
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
over-the-air
Advanced tools
🚀 Distribute yours apk
and ipa
files over the air. Uses ngrok for public distribution urls. Just scan the qrcode from the terminal to install the app.
npm install over-the-air --save-dev
# or install it globally
npm install over-the-air --global
Name | Description |
---|---|
app_name | App Name |
app_version | App version. Use the semantic version (major.minor.patch ). |
package_name | App package name |
apk | Location of the .apk file to distribute |
ipa | Location of the .ipa file to distribute |
When distributing .ipa
files it will copy the default manifest.plist
file from the static
folder so iPhone/iPad could show the installation dialog after qrcode scan.
over-the-air --app_name "MyAppName" \
--app_version 1.0.0 \
--package_name "com.myapp.package.name" \
--apk path/to/file.apk \
--ipa path/to/file.ipa
// index.js
const ota = require('over-the-air');
ota({
name: 'MyAppName',
version: '1.0.0',
package: 'com.myapp.package.name',
ipa: '/path/to/file.ipa',
apk: '/path/to/file.apk'
});
then
node index.js
FAQs
Over The Air distribution for Android and iOS
The npm package over-the-air receives a total of 1 weekly downloads. As such, over-the-air popularity was classified as not popular.
We found that over-the-air 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.