npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

rad-api

v1.0.4

Published

RAD pour créer des routes, controller, model ... etc

Readme

KAPI - Rapid API Development Tool

Un outil puissant pour générer rapidement des fichiers de routes, contrôleurs et modèles pour votre API.

Installation

npm install -g rad-api

Ou pour le développement local :

npm link

Utilisation

Générer une route

Générez un fichier de route complet pour une table spécifique :

kapi generate route <tableName>

Exemple :

kapi generate route citations

Cela créera un fichier citations.routes.js avec :

  • Configuration Prisma MariaDB
  • Fonction all() pour récupérer tous les enregistrements
  • Gestion des erreurs complète
  • Logs de requête

Fichier généré (citations.routes.js) :

import { PrismaMariaDb } from '@prisma/adapter-mariadb';
import { PrismaClient } from '../../../generated/prisma/client.js';

const maria = new PrismaMariaDb({
  host: process.env.DATABASE_HOST,
  port: process.env.DATABASE_PORT,
  user: process.env.DATABASE_USER,
  password: process.env.DATABASE_PASSWORD,
  database: process.env.DATABASE_NAME
});

const prisma = new PrismaClient({ adapter: maria });

export const all = async (req, res) => {
  req.log?.info('all Citations endpoint');
  try {
    const allCitation = await main();
    res.status(200);
    res.json(allCitation);
  } catch (error) {
    req.log?.error('Error fetching Citations:', error);
    return res.status(500).json({ msg: 'Internal Server Error' });
  }
};

async function main() {
  const allCitation = await prisma.Citations.findMany()
  console.log('All Citations:', JSON.stringify(allCitation, null, 2))
  return allCitation;
}

Fonctionnalités

  • ✅ Génération automatique de fichiers de routes
  • ✅ Conversion intelligente des noms (singulier/pluriel, PascalCase)
  • ✅ Intégration Prisma MariaDB préinstallée
  • ✅ Gestion des erreurs et logs
  • ✅ Protection contre les fichiers dupliqués
  • ✅ Messages de sortie détaillés et utiles

Structure du projet

RAD-api/
├── index.js                    # Point d'entrée CLI
├── package.json
├── README.md
└── src/
    ├── commands/
    │   └── generate.js        # Logique de génération
    ├── templates/
    │   └── route.template.js  # Template de route
    └── utils/
        ├── parser.js          # Parser d'arguments
        ├── fileHelper.js      # Utilitaires de fichier
        └── stringHelper.js    # Utilitaires de chaîne

Options d'environnement

Le fichier généré utilise les variables d'environnement suivantes :

DATABASE_HOST      = Adresse du serveur MariaDB
DATABASE_PORT      = Port MariaDB (par défaut: 3306)
DATABASE_USER      = Utilisateur MariaDB
DATABASE_PASSWORD  = Mot de passe MariaDB
DATABASE_NAME      = Nom de la base de données

Exemples d'utilisation

Tables simples

kapi generate route products
kapi generate route categories
kapi generate route customers

Tables plurielles

kapi generate route citations      # Génère handlers pour la table "Citations"
kapi generate route users          # Génère handlers pour la table "Users"

Gestion des erreurs

L'outil gère automatiquement :

  • Les fichiers déjà existants ✓
  • Les noms de table vides ✓
  • Les répertoires manquants (création automatique) ✓

Développement

Pour ajouter de nouvelles commandes :

  1. Créez un template dans src/templates/
  2. Créez un fichier de commande dans src/commands/
  3. Ajoutez la logique de parsing dans index.js

Améliorations futures

  • [ ] kapi generate controller <tableName> - Générer les contrôleurs
  • [ ] kapi generate model <tableName> - Générer les modèles Prisma
  • [ ] kapi generate crud <tableName> - Générer CRUD complet
  • [ ] kapi config - Configuration interactive

Licence

ISC

Auteur

kferrandon