{"id":19840941,"url":"https://github.com/torvaney/reprex-clj","last_synced_at":"2025-09-03T06:37:23.033Z","repository":{"id":133824191,"uuid":"147013260","full_name":"Torvaney/reprex-clj","owner":"Torvaney","description":"Reproducible examples for clojure","archived":false,"fork":false,"pushed_at":"2018-09-03T20:49:09.000Z","size":17,"stargazers_count":4,"open_issues_count":8,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-28T22:24:22.838Z","etag":null,"topics":["clojure","reprex"],"latest_commit_sha":null,"homepage":null,"language":"Clojure","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/Torvaney.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2018-09-01T16:11:21.000Z","updated_at":"2018-09-11T10:25:38.000Z","dependencies_parsed_at":null,"dependency_job_id":"f91a17d8-be33-42b5-918f-d0b596a0fa36","html_url":"https://github.com/Torvaney/reprex-clj","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Torvaney/reprex-clj","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Torvaney%2Freprex-clj","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Torvaney%2Freprex-clj/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Torvaney%2Freprex-clj/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Torvaney%2Freprex-clj/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Torvaney","download_url":"https://codeload.github.com/Torvaney/reprex-clj/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Torvaney%2Freprex-clj/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273403950,"owners_count":25099299,"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-09-03T02:00:09.631Z","response_time":76,"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":["clojure","reprex"],"created_at":"2024-11-12T12:28:46.922Z","updated_at":"2025-09-03T06:37:23.006Z","avatar_url":"https://github.com/Torvaney.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"# reprex\n\n[![travis status](https://travis-ci.org/Torvaney/reprex-clj.svg?branch=master)](https://travis-ci.org/Torvaney/reprex-clj)\n[![code coverage](https://codecov.io/gh/Torvaney/reprex-clj/branch/master/graph/badge.svg)](https://codecov.io/github/Torvaney/reprex-clj?branch=master)\n\n[![](https://clojars.org/reprex/latest-version.svg)](https://clojars.org/reprex)\n\nPrepare **repr**oducible **ex**ample (reprexes) for posting to [GitHub\nissues](https://guides.github.com/features/issues/),\n[StackOverflow](https://stackoverflow.com/questions/tagged/clojure), or [Slack\nsnippets](https://get.slack.help/hc/en-us/articles/204145658-Create-a-snippet).\n\nThis is a clojure port of the `tidyverse/reprex` [package for R](https://github.com/tidyverse/reprex).\n\n# Usage\n\nUse the `reprex` function to easily capture expressions and their outputs.\n\nWith no arguments, reprex will read code from the clipboard:\n\n~~~\nuser=\u003e (require '[reprex.core :refer [reprex]])\nnil\nuser=\u003e (println (reprex))\n``` clojure\n(+ 1 1)\n; =\u003e 2\n\n(* 5 5)\n; =\u003e 25\n```\n\n\u003cdetails\u003e\u003csummary\u003eSession info\u003c/summary\u003e\n\n```\nClojure version:\n\t1.8.0\nJava version:\n\tjava version \"1.8.0_102\"\n\tJava(TM) SE Runtime Environment (build 1.8.0_102-b14)\n\tJava HotSpot(TM) 64-Bit Server VM (build 25.102-b14, mixed mode)\n```\n\n\u003c/details\u003e\n\nCreated by [reprex](https://github.com/Torvaney/reprex-clj)\nnil\nuser=\u003e\n~~~\n\nAlternatively, you can supply expressions as arguments:\n\n```\nuser=\u003e (-\u003e\u003e (reprex (+ 1 1) (* 5 5)) println)\n```\n\nThis GitHub-flavored Markdown is then ready to be copied and pasted. When\nrendered, it looks like this:\n\n``` clojure\n(+ 1 1)\n; =\u003e 2\n\n(* 5 5)\n; =\u003e 25\n```\n\n\u003cdetails\u003e\u003csummary\u003eSession info\u003c/summary\u003e\n\n```\nClojure version:\n\t1.8.0\nJava version:\n\tjava version \"1.8.0_102\"\n\tJava(TM) SE Runtime Environment (build 1.8.0_102-b14)\n\tJava HotSpot(TM) 64-Bit Server VM (build 25.102-b14, mixed mode)\n```\n\n\u003c/details\u003e\n\nCreated by [reprex](https://github.com/Torvaney/reprex-clj)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftorvaney%2Freprex-clj","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftorvaney%2Freprex-clj","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftorvaney%2Freprex-clj/lists"}