Herramientas para Desarrolladores
Dockerfile Generador
Generar a production-ready Dockerfile template.
Entrada
Dockerfile Generador
dockerfiledockernodedeployment
Salida
Generated Dockerfile
# tool-planet FROM node:20-alpine AS deps WORKDIR /app COPY package*.json* yarn.lock* pnpm-lock.yaml* ./ RUN npm ci FROM node:20-alpine AS builder WORKDIR /app COPY --from=deps /app/node_modules ./node_modules COPY . . RUN npm run build FROM node:20-alpine AS runner WORKDIR /app ENV NODE_ENV=production COPY --from=builder /app ./ EXPOSE 3000 CMD ["npm","start"]
Herramientas relacionadas
JSON paramateador
Pretty-print raw JSON con configurable indentation.
JSON Validador
ValiFecha JSON y get a clean parse result.
JSON Minifier
Compress JSON into a single-line payload.
JSON Diff
Compare two JSON documents y list what changed.
JWT Decoder
Decode JWT header y payload conout verifying the signature.
Regex Tester
Run a regular expression agIAnst sample Texto y inspect matches.