
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
nodes-url-runtime
Advanced tools
Download and execute scripts dynamically with automatic dependency installation
A Node.js package that downloads and executes scripts from URLs with automatic dependency installation at runtime.
Official Package: https://www.npmjs.com/package/nodes-url-runtime
Official Repo: https://github.com/LNodesL/nodes-url-runtime
require() and import statementsrun(url)npm install nodes-url-runtime
import { run } from 'nodes-url-runtime';
// Download and execute a script from a URL
await run('https://example.com/script.js');
The package will:
import { run } from 'nodes-url-runtime';
// This script can use any npm package - it will be installed automatically!
await run('https://raw.githubusercontent.com/user/repo/main/script.js');
If the script at that URL contains:
const axios = require('axios');
const lodash = require('lodash');
console.log('Script running with dependencies!');
The package will automatically install axios and lodash before executing the script.
require() and import statementsrequire())import ... from)import())@scope/package).mjs files) are not fully supported - scripts should use CommonJS formatMIT
FAQs
Download and execute scripts dynamically with automatic dependency installation
We found that nodes-url-runtime demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.