AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Node Express

skill-ggombee-code-forge-node-express · by ggombee

Express/Fastify 기반 Node.js 백엔드 컨벤션

No reviews yet
0 installs
11 views
0.0% view→install

Install

$ agentstack add skill-ggombee-code-forge-node-express

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-ggombee-code-forge-node-express)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Node Express? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Node.js Express/Fastify 컨벤션

프로젝트 구조

src/
├── app.ts           # 앱 초기화, 미들웨어 등록
├── server.ts        # 서버 진입점 (app.ts와 분리)
├── routes/          # 라우터 모음
├── controllers/     # 요청/응답 처리
├── services/        # 비즈니스 로직
├── middleware/      # 커스텀 미들웨어
├── models/          # DB 모델 (Prisma schema 또는 ORM)
└── types/           # 공유 TypeScript 타입

네이밍 규칙

  • 파일: camelCase.ts 또는 kebab-case.ts (프로젝트 일관성 유지)
  • 클래스: PascalCase
  • 함수/변수: camelCase
  • 환경변수: UPPER_SNAKE_CASE
  • 라우트 경로: kebab-case (예: /user-profiles)

에러 처리

  • 중앙 집중식 에러 핸들러 미들웨어 (middleware/errorHandler.ts)
  • AppError 커스텀 클래스로 상태 코드 + 메시지 캡슐화
  • async 라우터는 express-async-errors 또는 try-catch wrapper 사용

테스트

  • Jest + supertest 조합
  • 서비스 레이어 단위 테스트 + 라우터 통합 테스트
  • DB mock: jest.mock 또는 테스트 전용 DB 인스턴스

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.