1.0.0 ā€¢ Published 11 months ago

readme-project-generator v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

CLI that generates beautiful README.md files. readme-project-generator will suggest you default answers by reading your package.json and git configuration.

āœØ Demo

readme-project-generator is able to read your environment (package.json, git config...) to suggest you default answers during the README.md creation process:

Example of package.json with good meta data:

// The package.json is not required to run readme-project-generator
{
  "name": "readme-project-generator",
  "version": "1.0.0",
  "description": "CLI that generates beautiful README.md files.",
  "author": "Estevam Souza",
  "license": "MIT",
  "homepage": "https://github.com/estevam5s/readme-project-generator#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/estevam5s/readme-project-generator.git"
  },
  "bugs": {
    "url": "https://github.com/estevam5s/readme-project-generator/issues"
  },
  "engines": {
    "npm": ">=5.5.0",
    "node": ">=9.3.0"
  }
}

šŸš€ Usage

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-project-generator

Or use default values for all questions (-y):

npx readme-project-generator -y

Use your own ejs README template (-p):

npx readme-project-generator -p path/to/my/own/template.md

You can find ejs README template examples here.

Code Contributors

Financial Contributors

Individuals

Organizations

šŸ¤ Contributing

Author

šŸ‘¤ Estevam Souza

Show your support

Please ā­ļø this repository if this project helped you!

šŸ“ License

Copyright Ā© 2019 Estevam Souza. This project is MIT licensed.


This README was generated with ā¤ļø by readme-md-generator