
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.
feli is a javascript library for building a static web-server for installing and running locally your front-end web-app.
npm i -D feli
Here the typical code for creating a mini-server:
import { feli_cli } from '../dist/index.js';
import process from 'node:process';
import path from 'node:path';
const scrDir = import.meta.dirname;
const defaultPublicDir = path.join(scrDir, 'public');
try {
await feli_cli(defaultPublicDir, process.argv);
} catch (err) {
console.error(`CATCH ERROR: ${err}`);
}
If you publish your mini-server, you can use it as following
npm i myMiniServer
npx myMiniServer
npx myMiniServer --help
git clone https://github.com/charlyoleg2/feli_mono
cd feli_mono
npm install
npm -w feli run ci
npm -w feli run test-feli
FAQs
library for making quickly your mini-server for your front-end only web-app
We found that feli 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.