
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
AppHandler for The X Project: scans apps from C:\Users\\AppData\x-project\apps (or configured path).
\
A tiny AppHandler for The X Project.
It scans a directory for apps and returns a clean registry describing what’s installed.
Default scan directory (Windows-style as requested):
C:\Users\<you>\AppData\x-project\apps
Because humans love inconsistency, it also supports common fallbacks:
%USERPROFILE%\AppData\Local\x-project\apps%USERPROFILE%\AppData\Roaming\x-project\appsYou can override everything by passing appsDir.
npm i teamx-apps
const { createAppHandler } = require("teamx-apps");
const apps = createAppHandler(); // uses default dir resolution
const results = await apps.scan();
console.log(results.apps);
An app is any subfolder containing one of:
app.dll.js (preferred entry)app.jsmain.jsapp.json (optional metadata)If app.json exists, supported fields:
{
"id": "notes",
"name": "Notes",
"version": "1.0.0",
"entry": "app.js"
}
createAppHandler(options?)Options:
appsDir?: string (absolute or relative)preferDll?: boolean (default true)followSymlinks?: boolean (default false)handler.scan()Returns:
{
ok: true,
dir: "C:\\Users\\...\\AppData\\x-project\\apps",
apps: [
{ id, name, version, dir, entry, entryType, files }
],
warnings: []
}
handler.resolveDefaultDir()Returns the resolved directory that would be scanned.
FAQs
AppHandler for The X Project: scans apps from C:\Users\\AppData\x-project\apps (or configured path).
The npm package teamx-apps receives a total of 0 weekly downloads. As such, teamx-apps popularity was classified as not popular.
We found that teamx-apps 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

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.