CLI that generates beautiful README.files.
readme-generator
will suggest you default answers by reading yourpackage.json
andgit
configuration.
Example of package.json
with good meta data:
// The package.json is not required to run README-GENERATOR
{
"name": "readme-generator",
"version": "0.1.3",
"description": "CLI that generates beautiful README files.",
"author": "Franck Abgrall",
"license": "MIT",
"homepage": "https://github.com/kefranabg/readme-generator#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kefranabg/readme-generator.git"
},
"bugs": {
"url": "https://github.com/kefranabg/readme-generator/issues"
},
"engines": {
"npm": ">=5.5.0",
"node": ">=9.3.0"
}
}
Make sure you have npx installed (npx
is shipped by default since npm 5.2.0
)
Just run the following command at the root of your project and answer questions:
npx readme-generator
Or use default values for all questions (-y
):
npx readme-generator -y
Use your own ejs
README template (-p
):
npx readme-generator -p path/to/my/owner/template
You can find ejs README template examples here.
Contributions, issues and feature requests are welcome.
Feel free to check issues page if you want to contribute.
Check the contributing guide.
Please βοΈ this repository if this project helped you!
This project is MIT licensed.
This README was generated with β€οΈ by readme-generator