
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
FCodeX es un simple y ligero framework para construir servidores HTTP en Node.js usando TypeScript. Ofrece una forma fácil y estructurada de manejar rutas y middlewares, ideal para proyectos pequeños y medianos.
NPM :
npm i fcodex
Para comenzar a usar el framework, puedes crear un proyecto en npm. Crea un index.js (ts) en el directorio. Asegurate que tengas el type:"module" en el package.json.
Crear un archivo index.ts
import { Server } from "fcodex";
const app = new Server();
const router = app.router;
router.get("/hello", (req, res) => {
res.status(200).send("Hello");
});
app.listen(3000, () => {
console.log(`Server is running on port 3000`);
});
Correr el proyecto con Nodejs.
node index.js
| Métrica | FCodeX | Express |
|---|---|---|
| Latencia Promedio | 118.16 ms | 256.01 ms |
| Latencia 2.5% | 49 ms | 200 ms |
| Latencia 50% | 107 ms | 239 ms |
| Latencia 97.5% | 274 ms | 354 ms |
| Latencia 99% | 436 ms | 410 ms |
| Requisiciones por Segundo | 8,430.8 | 3,883.3 |
| Bytes por Segundo | 1.54 MB | 928 kB |
| Total de Requisiciones | 254,000 en 30.12s | 117,000 en 30.08s |
| Errores | No reportado | No reportado |
fcodex tiene una latencia promedio menor, lo cual es mejor.fcodex maneja más solicitudes por segundo.fcodex maneja más datos por segundo.fcodex es aproximadamente 117.53% más rápido.fcodexmaneja aproximadamente 65.54% más datos por segundo.Las contribuciones son bienvenidas. Por favor, abre un issue o una pull request para proponer cambios.
Este proyecto está licenciado bajo la Licencia MIT. Consulta el archivo LICENSE para más detalles.
FAQs
A scalable and modular Node.js framework
We found that fcodex demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.