
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.
@fasteejs/edge
Advanced tools
Built on web Standards
Fast, Lightweight,runs on any JavaScript runtime
found as fasteejs
npm install fasteejs
found as @fasteejs/edge
npm install @fasteejs/edge
npm i fasteejs
runs on node,bun and deno
import {Fastee} from "fasteejs"
const app = new Fastee(); //uses defaults
const app1 = new Fastee({port:4000,delay:30000}) //pass port and shutdown delay
let server = http.createServer().listen(5000)
const app2 = new Fastee({server,delay:30000}) //passed listening server must be already running
app.get('/', function (req, res) {
res.send('Hello World')
})
app.static("static",{dotfiles:false}) //pass valid folder path and optional config
//shutdown listener
app.onShutdown((signal)=>{
//call service before shutdown
console.log("before",signal)
})
export {app,app1,app2}
import Edge from "@fasteejs/edge" //or import {Edge} from "@fasteejs/edge"
const app = new Edge();
console.log(app)
//global wares
app.use((req,res)=>{//no next funtion required
req.id="ware1"
},(req,res)=>{
console.log(req.id)
return res.json({msg:"success"})
})
//bwares route specific wares
app.use("/api",(req,res)=>{//no next funtion required
req.id="ware1"
},(req,res)=>{
console.log(req.id)
return res.json({msg:"success"})
})
/*handler
a handler must return a response
*/
app.get("/",async (req,res)=>{
console.log(req)
//object
return new Response("hi from server")//or return res.text("hi edge")
})
export default app //must do
FAQs
blazing fast web application framework
We found that @fasteejs/edge 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
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.