
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.
Rumbo allows you to build fullstack app with Express and React in NodeJS, inspired by NextJS.
This library will automatically resolve paths for your apps, so you don't have to register paths with Express on the server, or with React Router for the client.
Have a look at Rumbo Typescript Template for an example to use Rambo with Typescript
Supported:
src
├── apps
│ ├── api
│ │ ├── _middleware.ts
│ │ ├── index.ts // or get.ts
│ │ │── post.ts
│ │ │── users
│ │ ├── index.ts
│ ├── client
│ │ ├── _layout.ts
│ │ ├── index.ts
│ │ │── users
│ │ ├── index.ts
├── dev.ts
├── index.ts
├── rumboConfigs.ts
import path from "path";
import { RumboProps } from "rumbo";
const rumboConfigs: RumboProps = {
debug: true,
rootDir: __dirname,
listen: {
port: parseInt(process.env.PORT || "3000"),
host: process.env.HOST || "localhost"
},
routes: {
"/": {
type: "client-ssr",
location: path.join(__dirname, "routes/client"),
},
"/api": {
type: "server",
location: path.join(__dirname, "routes/api"),
excludePaths: ["includes"]
},
},
// must specify for generating files in runtime
staticRoutes: null
};
export default rumboConfigs;
// src/app/api/_middleware.ts
import { Request, Response, NextFunction } from "express";
export default function(req: Request, res: Response, next: NextFunction) {
console.log("/admin/_middleware");
next()
}
// src/app/server/index.ts
import { Request, Response } from "express";
export default function(req: Request, res: Response) {
res.json({
message: "ok"
})
}
// src/app/server/users/index.ts
import { Request, Response } from "express";
export default function(req: Request, res: Response) {
res.json({
message: "ok"
})
}
// app.ts
import express from "express";
import rumbo from "rumbo";
import configs from "./rumboConfigs";
const app = express();
rumbo(app, configs);
FAQs
Build fullstack apps, powered by ExpressJS/React
We found that kocoon 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
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.