Skip to content

Latest commit

 

History

History
76 lines (54 loc) · 2.34 KB

File metadata and controls

76 lines (54 loc) · 2.34 KB

README Auto Scan Examples

This folder contains example projects demonstrating the README output generated by README Auto Scan for different project types.

Available Examples

Example Description
javascript-package Example generated README for a JavaScript package
typescript-package Example generated README for a TypeScript package
python-pip Example generated README for a Python pip project
python-poetry Example generated README for a Python Poetry project
python-pipenv Example generated README for a Python Pipenv project
python-django Example generated README for a Django project
php-basic Example generated README for a basic PHP project
php-laravel Example generated README for a Laravel project

About These Examples

These examples are documentation samples showing the kind of README output generated by README Auto Scan. They are not meant to be published as real packages.

Each example contains:

  • Sample project files (package.json, requirements.txt, etc.)
  • A README.generated.md file showing what README Auto Scan would generate

Previewing Examples Locally

You can test how README Auto Scan processes these examples:

cd examples/python-pip
npx readme-autoscan --dry-run

Or for JavaScript/TypeScript examples:

cd examples/javascript-package
npx readme-autoscan --dry-run

Generated README Structure

JavaScript/TypeScript Projects

Generated READMEs include:

  • Title and description from package.json
  • Features list
  • Installation instructions
  • Usage examples
  • Available Scripts table (NPM/PNPM/Yarn/Bun commands)
  • Development setup
  • License information

Python Projects

Generated READMEs include:

  • Title and description (from pyproject.toml if available)
  • Features list
  • Installation instructions (pip, Poetry, or Pipenv)
  • Usage examples
  • Testing commands
  • Dependencies table (parsed from requirements.txt)
  • Development setup
  • License information

Django Projects

Generated READMEs include:

  • All standard Python sections
  • Django-specific commands (python manage.py runserver, python manage.py test)
  • Framework detection highlighted in features