nodejs-backend-typescript
Audited by Runlayer on Feb 21, 2026
Malicious tool definition detected
Tool: SKILL.md [1/3] Description: --- name: nodejs-backend-typescript description: "Node.js backend development with TypeScript, Express/Fastify servers, routing, middleware, and database integration" progressive_disclosure: entry_point: summary: "Node.js backend development with TypeScript, Express/Fastify servers, routing, middleware, and database integration" when_to_use: "When working with nodejs-backend-typescript or related functionality." quick_start: "1.
Tool: SKILL.md [2/3] Description: = result.data; // Type-safe user object }); ``` ### TypeBox with Fastify ```typescript import { Type, Static } from '@sinclair/typebox'; const UserSchema = Type.Object({ email: Type.String({ format: 'email' }), password: Type.String({ minLength: 8 }), profile: Type.Object({ firstName: Type.String(), lastName: Type.String(), age: Type.Integer({ minimum: 0 }), }), tags: Type.Optional(Type.Array(Type.String())), }); type User = Static<typeof UserSchema>; fastify.po
RUN npm run build FROM node:20-alpine WORKDIR /app COPY package*.json ./ RUN npm ci --omit=dev COPY --from=builder /app/dist ./dist ENV NODE_ENV=production EXPOSE 3000 CMD ["node", "dist/server.js"] ``` **docker-compose.yml**: ```yaml version: '3.8' services: app: build: .
Malicious tool definition detected
Tool: metadata.json Description: { "name": "nodejs-backend", "version": "1.0.0", "category": "toolchain", "toolchain": "typescript", "framework": "nodejs", "tags": [ "backend", "nodejs", "express", "fastify", "rest-api", "typescript", "jwt",