Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
7
- `src/`: API and domain code
Sign in to like and favorite skills
src/: API and domain code
src/api/: Express app, routes, Swagger (src/api/app.js, src/api/routes/*.js)src/services/: business logic (payments, inventory, CMS)src/models/: lightweight data models/value objectssrc/db/: migrations and DB bootstraptests/: Jest suites (unit, integration, contract, perf, observability)docs/: supplemental docs (e.g., docs/a11y-checklist.md)3000; Swagger at /api-docs.npm install: Install dependencies.npm start: Start the API on port 3000.npm run dev: Start with auto‑reload (nodemon).npm test: Run all Jest tests.npm run db:migrate: Run database migrations.PORT=3000 node tests/perf/perf-runner.js.require/module.exports).orders.js, store.memory.js).src/api/routes and export { router }.tests/**/*.test.js.npm test; add/update tests alongside feature changes.feat(cms): add banner publishing, fix(orders): correct total rounding)..env is git‑ignored).STRIPE_API_KEY, SHIPPO_TOKEN (or carrier‑specific), CMS_STORE, PG*.