TypeScript backend development with Express/Fastify, routing, middleware, and database integration.
Works with
Covers both Express and Fastify frameworks with complete server setup, routing patterns, middleware implementation, and error handling examples
Includes request validation using Zod and TypeBox, JWT and session-based authentication, and integration with Drizzle ORM and Prisma
Provides REST API design patterns for pagination, filtering, sorting, and standardized error responses with typ
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionnodejs-backend-typescriptExecute the skills CLI command in your project's root directory to begin installation:
Fetches nodejs-backend-typescript from bobmatnyc/claude-mpm-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate nodejs-backend-typescript. Access via /nodejs-backend-typescript in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
3
total installs
3
this week
29
GitHub stars
0
upvotes
Run in your terminal
3
installs
3
this week
29
stars
tsconfig.json (strict mode recommended):
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"types": ["node"]
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}
package.json scripts:
{
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"test": "vitest"
}
}
npm install -D typescript @types/node tsx vitest
npm install -D @types/express # or @types/node (Fastify has built-in types)
src/server.ts:
import express, { Request, Response, NextFunction } from 'express';
import { z } from 'zod';
const app = express();
const port = process.env.PORT || 3000;
// Middleware
app.use(express.json());
app.use(express.urlencoded({ extended: true }));
// Type-safe request handlers
interface TypedRequest<T> extends Request {
body: T;
}
// Routes
app.get('/health', (req: Request, res: Response) => {
res.json({ status: 'ok', timestamp: new Date().toISOString() });
});
// Start server
app.listen(port, () => {
console.log(`Server running on port ${port}`);
});
src/routes/users.ts:
import { Router } from 'express';
import { z } from 'zod';
import { validateRequest } from '../middleware/validation';
const router = Router();
const createUserSchema = z.object({
email: z.string().email(),
name: z.string().min(2),
age: z.number().int().positive().optional(),
});
router.post(
'/users',
validateRequest(createUserSchema),
async (req, res, next) => {
try {
const userData = req.body; // Type-safe after validation
// Database insert logic
res.status(201).json({ id: 1, ...userData });
} catch (error) {
next(error);
}
}
);
export default router;
src/middleware/validation.ts:
import { Request, Response, NextFunction } from 'express';
import { z, ZodSchema } from 'zod';
export const validateRequest = (schema: ZodSchema) => {
return (req: Request, res: Response, next: NextFunction) => {
try {
req.body = schema.parse(req.body);
next();
} catch (error) {
if (error instanceof z.ZodError) {
res.status(400).json({
error: 'Validation failed',
details: error.errors,
});
} else {
next(error);
}
}
};
};
src/middleware/auth.ts:
import { Request, Response, NextFunction } from 'express';Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
jwynia/agent-skills
mrgoonie/claudekit-skills
sickn33/antigravity-awesome-skills
sickn33/antigravity-awesome-skills
davila7/claude-code-templates
dotneet/claude-code-marketplace
Registry listing for nodejs-backend-typescript matched our evaluation — installs cleanly and behaves as described in the markdown.
We added nodejs-backend-typescript from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Useful defaults in nodejs-backend-typescript — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
nodejs-backend-typescript has been reliable in day-to-day use. Documentation quality is above average for community skills.
nodejs-backend-typescript fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
Useful defaults in nodejs-backend-typescript — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
Solid pick for teams standardizing on skills: nodejs-backend-typescript is focused, and the summary matches what you get after install.
Registry listing for nodejs-backend-typescript matched our evaluation — installs cleanly and behaves as described in the markdown.
nodejs-backend-typescript has been reliable in day-to-day use. Documentation quality is above average for community skills.
nodejs-backend-typescript reduced setup friction for our internal harness; good balance of opinion and flexibility.
showing 1-10 of 74