{"id":16900271,"url":"https://github.com/ilshidur/express-humans","last_synced_at":"2025-03-15T14:30:33.330Z","repository":{"id":20016374,"uuid":"101420682","full_name":"Ilshidur/express-humans","owner":"Ilshidur","description":"Express middleware for generating a humans.txt or responding with an existing file.","archived":false,"fork":false,"pushed_at":"2025-03-03T17:26:12.000Z","size":1007,"stargazers_count":2,"open_issues_count":62,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-07T03:30:06.537Z","etag":null,"topics":["express","human","humanstxt"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Ilshidur.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-08-25T16:08:59.000Z","updated_at":"2021-04-17T20:09:18.000Z","dependencies_parsed_at":"2024-01-14T21:36:27.544Z","dependency_job_id":"ca55ce4d-95c3-4802-8fb6-5f47a53dd359","html_url":"https://github.com/Ilshidur/express-humans","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ilshidur%2Fexpress-humans","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ilshidur%2Fexpress-humans/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ilshidur%2Fexpress-humans/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ilshidur%2Fexpress-humans/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ilshidur","download_url":"https://codeload.github.com/Ilshidur/express-humans/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243742541,"owners_count":20340663,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["express","human","humanstxt"],"created_at":"2024-10-13T17:52:31.187Z","updated_at":"2025-03-15T14:30:33.034Z","avatar_url":"https://github.com/Ilshidur.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# express-humans\n\n![stability-stable](https://img.shields.io/badge/stability-stable-green.svg)\n[![Build Status][build-badge]][build-url]\n\n[![npm version][version-badge]][version-url]\n[![Known Vulnerabilities][vulnerabilities-badge]][vulnerabilities-url]\n[![dependency status][dependency-badge]][dependency-url]\n[![devdependency status][devdependency-badge]][devdependency-url]\n[![build status][build-badge]][build-url]\n[![Code Climate][maintainability-badge]][maintainability-url]\n[![downloads][downloads-badge]][downloads-url]\n\n[![NPM][npm-stats-badge]][npm-stats-url]\n\n\u003e Express middleware for generating a humans.txt or responding with an existing file.\n\n## Usage\n\nFirst run :\n\n`npm install express-humans` (both npm and Yarn locks are supported)\n\nthen :\n\n```javascript\nconst humans = require('express-humans');\nconst express = require('express');\n\nconst app = express();\n\napp.use(humans({\n  team: [\n    {\n      'Original developer': 'Hayden Bleasel',\n      Twitter: '@haydenbleasel'\n    }, {\n      Maintainer: 'Alexis Paques',\n      Github: '@AlexisTM'\n    }\n  ],\n  thanks: [\n    'Node',\n    'Gulp'\n  ],\n  site: {\n    'Standards': 'HTML5, CSS3',\n    'Components': 'jQuery, Normalize.css',\n    'Softwares': 'Atom, SublimeText'\n  },\n  note: 'Built with love by Hayden Bleasel.'\n}));\n\napp.listen(3000);\n```\n\nor :\n\n```javascript\n// Using the path of the humans.txt file\napp.use(humans('./humans.txt'));\n```\n\n## API\n\n`humans(options)`\n\n* `options` : `String` or `Object`\n  * if `String` : the path of the humans.txt file to serve\n  * if `Object` : [the `humans-generator` package config](https://www.npmjs.com/package/humans-generator)\n\n## Development\n\n```bash\nnpm run build # Or \"yarn run build\"\nnpm test # Or \"yarn test\"\n```\n\n## Credits\n\nInspired of [express-robots](https://www.npmjs.com/package/express-robots).\n\n## License\n\nMIT\n\n\u003chr/\u003e\n\n\u003cp align=\"center\"\u003e\n  Don't forget to 🌟 Star 🌟 the repo if you like this npm package !\u003cbr/\u003e\n  \u003ca href=\"https://github.com/Ilshidur/express-humans/issues/new\"\u003eYour feedback is appreciated\u003c/a\u003e\n\u003c/p\u003e\n\n[build-badge]: https://img.shields.io/endpoint.svg?url=https%3A%2F%2Factions-badge.atrox.dev%2FIlshidur%2Fexpress-humans%2Fbadge\u0026style=flat\n[build-url]: https://actions-badge.atrox.dev/Ilshidur/express-humans/goto\n[version-badge]: https://img.shields.io/npm/v/express-humans.svg\n[version-url]: https://www.npmjs.com/package/express-humans\n[vulnerabilities-badge]: https://snyk.io/test/npm/express-humans/badge.svg\n[vulnerabilities-url]: https://snyk.io/test/npm/express-humans\n[dependency-badge]: https://david-dm.org/ilshidur/express-humans.svg\n[dependency-url]: https://david-dm.org/ilshidur/express-humans\n[devdependency-badge]: https://david-dm.org/ilshidur/express-humans/dev-status.svg\n[devdependency-url]: https://david-dm.org/ilshidur/express-humans#info=devDependencies\n[build-badge]: https://travis-ci.org/Ilshidur/express-humans.svg\n[build-url]: https://travis-ci.org/Ilshidur/express-humans\n[maintainability-badge]: https://api.codeclimate.com/v1/badges/88f5bf63731c1cc35f9e/maintainability\n[maintainability-url]: https://codeclimate.com/github/Ilshidur/express-humans/maintainability\n[downloads-badge]: https://img.shields.io/npm/dt/express-humans.svg\n[downloads-url]: https://www.npmjs.com/package/express-humans\n[npm-stats-badge]: https://nodei.co/npm/express-humans.png?downloads=true\u0026downloadRank=true\n[npm-stats-url]: https://nodei.co/npm/express-humans\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Filshidur%2Fexpress-humans","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Filshidur%2Fexpress-humans","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Filshidur%2Fexpress-humans/lists"}