
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.
@infernus/map-loader
Advanced tools
A tool for obj conversion, parsing, and loading, which refers to samp-map-parser.
pnpm add @infernus/core @infernus/map-loader
import { GameMode } from "@infernus/core";
import {
getMapCount,
getMapInfoFromID,
loadMap,
mapConverter,
} from "@infernus/map-loader";
import path from "node:path";
GameMode.onInit(async ({ next }) => {
const start = Date.now();
await mapConverter({
input: path.resolve("./scriptfiles/us_mapas.pwn"),
output: path.resolve("./scriptfiles/us_mapas.txt"),
removeOutput: true,
});
const end = Date.now();
console.log((end - start) / 1000 + "s");
const mapId = await loadMap({
source: path.resolve("./scriptfiles/us_mapas.txt"),
onLoaded(objects, removedBuilding) {
console.log(objects.length, removedBuilding.length);
},
});
console.log(mapId);
const info = getMapInfoFromID(mapId);
console.log(info);
console.log(getMapCount());
return next();
});
FAQs
A tool for obj conversion, parsing, and loading
The npm package @infernus/map-loader receives a total of 3 weekly downloads. As such, @infernus/map-loader popularity was classified as not popular.
We found that @infernus/map-loader 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.