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

initia-devaxis

v1.0.2

Published

CLI to create full-stack React projects with Next.js (REST) or RedwoodJS (GraphQL)

Readme

🚀 INITIA - CLI de Boilerplate

Une CLI moderne pour créer des projets Next.js et RedwoodJS avec des configurations optimisées (ESLint, Prettier, TypeScript).

✨ Fonctionnalités

  • Projets Next.js avec App Router et optimisations
  • 🌲 Projets RedwoodJS full-stack complets
  • 🔍 ESLint configuré avec les meilleures pratiques
  • 💅 Prettier pour un formatage cohérent du code
  • 🔷 TypeScript supporté par défaut
  • 🎨 Tailwind CSS (optionnel pour Next.js)
  • 📖 README personnalisés avec documentation complète

🛠️ Installation

Installation globale (recommandée)

npm install -g initia

Utilisation avec npx (sans installation)

npx initia

🚀 Utilisation

Créer un nouveau projet

initia
# ou
initia init

Processus de création

  1. Configuration du projet :

    • Nom du projet
    • Choix du framework (Next.js / RedwoodJS)
    • Options TypeScript, ESLint, Prettier
    • Tailwind CSS (pour Next.js)
  2. Génération automatique du projet avec toutes les configurations

📋 Exemples de projets générés

Next.js avec TypeScript + Tailwind

mon-projet-next/
├── src/
│   ├── app/           # App Router (Next.js 13+)
│   ├── components/    # Composants réutilisables
│   └── styles/        # Fichiers CSS
├── public/            # Assets statiques
├── .eslintrc.json     # Configuration ESLint
├── .prettierrc.json   # Configuration Prettier
├── tsconfig.json      # Configuration TypeScript
└── README.md          # Documentation

Scripts disponibles :

  • npm run dev - Serveur de développement
  • npm run build - Build de production
  • npm run lint - Linting du code
  • npm run format - Formatage avec Prettier

RedwoodJS avec TypeScript

mon-projet-redwood/
├── api/               # Backend (GraphQL, Services, DB)
├── web/               # Frontend (React, Pages, Composants)
├── scripts/           # Scripts utilitaires
├── .eslintrc.js       # Configuration ESLint
├── .prettierrc.js     # Configuration Prettier
└── README.md          # Documentation complète

Scripts disponibles :

  • yarn rw dev - Serveurs développement (frontend + backend)
  • yarn rw build - Build de production
  • yarn rw lint - Linting du code
  • yarn format - Formatage avec Prettier

🔧 Configuration

Personnalisation

Vous pouvez modifier la CLI pour :

  • Changer les configurations par défaut
  • Ajouter des templates personnalisés
  • Intégrer d'autres frameworks

🏗️ Développement

Prérequis

  • Node.js 18+
  • npm ou Yarn
  • TypeScript

Installation en développement

git clone <votre-repo>
cd initia
npm install
npm run build
npm link

Scripts de développement

npm run dev         # Compilation TypeScript en mode watch
npm run build       # Compilation TypeScript
npm run start       # Démarrage de la CLI compilée
npm test           # Tests (à implémenter)

Structure du projet

initia/
├── src/
│   ├── commands/          # Commandes CLI
│   │   └── init.ts        # Commande d'initialisation
│   ├── utils/
│   │   └── generators/    # Générateurs de projets
│   │       ├── nextjs.ts  # Générateur Next.js
│   │       └── redwood.ts # Générateur RedwoodJS
│   ├── types/             # Types TypeScript
│   └── index.ts           # Point d'entrée
├── package.json           # Dépendances et scripts
└── tsconfig.json          # Configuration TypeScript

📦 Publication

NPM

npm run build
npm publish

Tests locaux

npm link
initia --help

🛠️ Technologies utilisées

  • Node.js - Runtime JavaScript
  • TypeScript - Langage typé
  • Commander.js - Parser CLI
  • Inquirer.js - Prompts interactifs
  • Chalk - Couleurs dans le terminal
  • Boxen - Boxes formatées
  • Figlet - ASCII Art

🤝 Contribution

Les contributions sont les bienvenues ! N'hésitez pas à :

  1. Fork le projet
  2. Créer une branche (git checkout -b feature/amazing-feature)
  3. Commit vos changements (git commit -m 'Add amazing feature')
  4. Push sur la branche (git push origin feature/amazing-feature)
  5. Ouvrir une Pull Request

📄 Licence

Ce projet est sous licence MIT. Voir le fichier LICENSE pour plus de détails.

📞 Support