building-express-apis

Installation
SKILL.md

Express.js

Quick Start

import express from 'express';
import cors from 'cors';
import helmet from 'helmet';

const app = express();

app.use(helmet());
app.use(cors());
app.use(express.json());

app.get('/api/health', (req, res) => {
  res.json({ status: 'ok' });
});
Installs
6
GitHub Stars
4
First Seen
Mar 10, 2026
building-express-apis — doanchienthangdev/omgkit