Global Araç
Readme Generator
# My Project


A short description of what it does.
## Features
- Fast and dependency-free
- Works in the browser and Node
- TypeScript types built in
## Installation
```bash
npm install
```
## Usage
```js
import { thing } from "my-project";
thing();
```
## Contributing
Pull requests welcome. For major changes, open an issue first to discuss what you'd like to change.
## License
MIT © Your Name
Answer a short form — project name, tagline, install command, usage snippet, license — and get a polished README.md file with all the boring boilerplate already filled in: badges (build status, license, npm version), heading structure (Description, Installation, Usage, API, Contributing, License), and relative-link placeholders ready for you to point at your repo's docs folder.
A good README is the difference between a project that gets used and one that gets ignored. The README is what GitHub renders front-and-center, what npm shows on the package page, and the first thing every potential user or contributor reads. The standard structure (problem → install → quick example → API reference → contributing → license) is well-established but tedious to write from scratch every time. This tool ships you a complete first draft in 30 seconds.
Pick which sections to include based on your project's stage: brand-new projects work fine with just name + description + install + license; established libraries benefit from full API docs, contributing guidelines, and code-of-conduct links; application repos (vs libraries) usually want a "Why this exists" section and screenshots. The generator covers all of these and you check what you want.
Nasıl Kullanılır
- Fill in project name, one-line description, and tagline. The first paragraph of your README should answer 'what does this do and why should I care' in 2 sentences.
- Add install command (npm install foo, pip install foo, etc.) and a quick usage code block. These two together cover 80% of what users want to know.
- Tick the additional sections you want: Features, API, Contributing, License, Code of Conduct, Acknowledgements, Roadmap.
- Pick badges to include: license badge, build status (paste your CI URL), npm version, GitHub stars. Each links to the right place automatically.
- Copy the generated Markdown or download as README.md. Drop it at the root of your repo.
Ne Zaman Kullanılır
- Spinning up a new repo and you want professional README structure from day one.
- Migrating an old project that has a README that's grown disorganized.
- Standardizing READMEs across a team's repos (everyone uses the same structure).
- Side-project pushes to GitHub where a polished README significantly increases first-impression quality.
Ne Zaman Kullanılmaz
- Highly customized README structures (interactive examples, embedded CodePen, GitHub-specific advanced markdown like rendered diagrams) — start from this template and add the custom bits manually.
- Documentation sites — README is for the GitHub-front-page summary; comprehensive documentation belongs in docs/ or a dedicated docs site (Docusaurus, GitBook).
- Internal repos where polish doesn't matter — minimal README with just "how to run locally" is fine, no need for full structure.
Yaygın Kullanım Senaryoları
- Quick generation during a typical workday
- Pre-decision sanity-check on inputs and outputs
- Educational use — demonstrating the underlying concept
- Onboarding a colleague who needs the same calculation/conversion
Sık Sorulan Sorular
Why does GitHub care so much about the README?
Because it's the most-viewed file in any repo. GitHub's algorithm favors repos with READMEs in search and recommendations; users on the repo page see the README rendered by default; npm and PyPI use it as the package listing copy. A clear, well-structured README is one of the highest-leverage investments in repo growth.
What's the right amount of detail?
Enough that a reasonably-technical user can install and try the project in under 5 minutes without reading anything else. Anything beyond that — long-form tutorials, comprehensive API references, advanced configuration — belongs in the docs/ folder. The README is the front door, not the library.
Should I include badges?
A few are signal; many are noise. Useful badges: build status, latest version, license. Less useful: 'made with love', 'awesome', most discord/twitter links unless you're actively using them. The default selection in this tool is the curated set.
How do I add a logo or screenshot?
After generating the README, manually add a centered image at the top: ```html <p align="center"><img src="docs/logo.png" width="200"></p> ``` The HTML inside Markdown trick gives you center-aligned images that Markdown alone doesn't support.
Do you generate a CONTRIBUTING.md or CODE_OF_CONDUCT.md too?
Not directly — the README links to them as placeholders. For starting templates, GitHub auto-suggests these when you create a repo and tick the appropriate checkboxes, or you can use the Contributor Covenant (https://contributor-covenant.org) for a starting code of conduct.