backend-technologies
Installation
SKILL.md
Backend Technologies Skill
Quick Start - Express.js API
import express, { Request, Response } from 'express';
import { prisma } from './lib/prisma';
const app = express();
app.use(express.json());
// GET all users
app.get('/users', async (req: Request, res: Response) => {
try {
const users = await prisma.user.findMany();
res.json(users);
} catch (error) {
res.status(500).json({ error: 'Failed to fetch users' });
}
Related skills
More from pluginagentmarketplace/custom-plugin-typescript
career-development
Master career development, leadership, communication, and organizational skills. Use when planning career growth, preparing for leadership roles, or developing soft skills.
9security-practices
Master secure development, OWASP top 10, testing, and compliance. Use when building secure systems, conducting security reviews, or implementing best practices.
8ai-ml-technologies
Master AI, machine learning, LLMs, prompt engineering, and blockchain development. Use when building AI applications, working with LLMs, or developing smart contracts.
7tooling
TypeScript tooling, configuration, and build optimization
6advanced-types
Advanced TypeScript types including generics, conditionals, and mapped types
6fundamentals
TypeScript type system fundamentals and basic typing patterns
6