{"id":24408892,"url":"https://github.com/codesandtags/open-quotes","last_synced_at":"2025-08-24T09:34:24.688Z","repository":{"id":86981582,"uuid":"606778651","full_name":"codesandtags/open-quotes","owner":"codesandtags","description":"A Typescript/JavaScript library with Software quotes from developers or people in the Tech industry.","archived":false,"fork":false,"pushed_at":"2023-07-10T03:41:44.000Z","size":253,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-09T12:45:33.423Z","etag":null,"topics":["quotes","quotes-array","quotes-generator","software","tech"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codesandtags.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":null,"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":"2023-02-26T14:44:17.000Z","updated_at":"2023-07-08T20:31:58.000Z","dependencies_parsed_at":"2025-03-13T09:31:54.439Z","dependency_job_id":null,"html_url":"https://github.com/codesandtags/open-quotes","commit_stats":null,"previous_names":["codesandtags/codesandtags-quotes"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/codesandtags/open-quotes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codesandtags%2Fopen-quotes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codesandtags%2Fopen-quotes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codesandtags%2Fopen-quotes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codesandtags%2Fopen-quotes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codesandtags","download_url":"https://codeload.github.com/codesandtags/open-quotes/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codesandtags%2Fopen-quotes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271836327,"owners_count":24831201,"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","status":"online","status_checked_at":"2025-08-24T02:00:11.135Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["quotes","quotes-array","quotes-generator","software","tech"],"created_at":"2025-01-20T05:53:30.028Z","updated_at":"2025-08-24T09:34:24.663Z","avatar_url":"https://github.com/codesandtags.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Open quotes\n\n[![GitHub release](https://img.shields.io/github/v/release/codesandtags/open-quotes.svg)]()\n[![NPM Version](https://img.shields.io/npm/v/open-quotes.svg)]()\n\nA Typescript/JavaScript library with Software quotes from developers or people in the Tech industry, coming from Open Source to big tech speakers, and writers.\n\n## Getting started\n\n### Install package\n\n```sh\nnpm install open-quotes\n```\n\nor\n\n```sh\nyarn add open-quotes\n```\n\n### Usage\n\nUsing CommonJS\n\n```js\n// CommonJS\nconst quotes = require('open-quotes');\n\nconsole.log(quotes.getAllQuotes());\n\nconsole.log(quotes.getQuotesByCategory('Programming'));\n```\n\nUsing ES6 Modules or TypeScript:\n\n```js\n// ES6 Modules or TypeScript\nimport quotes from 'open-quotes';\n\nconsole.log(quotes.getAllQuotes());\n\nconsole.log(quotes.getQuotesByCategory('Programming'));\n```\n\n**Example output**:\n\n```json\n[\n  {\n    \"quote\": \"Time is what we want most, but what we use worst.\",\n    \"author\": {\n      \"name\": \"William Penn\",\n      \"link\": \"https://en.wikipedia.org/wiki/William_Penn\",\n      \"profileImage\": \"https://en.wikipedia.org/wiki/File:WilliamPenn.jpg\"\n    },\n    \"categories\": [\"Productivity\"]\n  },\n  {\n    \"quote\": \"Everything in software architecture is a trade-off. First law of Software Architecture.\",\n    \"author\": {\n      \"name\": \"Fundamentals of Software Architecture\",\n      \"link\": \"https://www.oreilly.com/library/view/fundamentals-of-software/9781492043447/\",\n      \"profileImage\": \"https://learning.oreilly.com/library/cover/9781492043447/250w/\"\n    },\n    \"categories\": [\"Software Architecture\"]\n  },\n  {\n    \"quote\": \"A person who never made a mistake never tried anything new.\",\n    \"author\": {\n      \"name\": \"Albert Einstein\",\n      \"link\": \"https://en.wikipedia.org/wiki/Albert_Einstein\",\n      \"profileImage\": \"https://en.wikipedia.org/wiki/File:Einstein_1921_by_F_Schmutzer_-_restoration.jpg\"\n    },\n    \"categories\": [\"Life\"]\n  }\n]\n```\n\n## API Reference\n\n### getAllQuotes()\n\nReturns all quotes from the library.\n\n### getQuotesByCategory(category: string)\n\nReturns all quotes from the library filtered by category.\n\n## Contribute\n\nIf you want to contribute to this project or add your quotes, please read the [CONTRIBUTING.md](CONTRIBUTING.md) file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodesandtags%2Fopen-quotes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodesandtags%2Fopen-quotes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodesandtags%2Fopen-quotes/lists"}