{"id":22870300,"url":"https://github.com/berquerant/emacs-little-async","last_synced_at":"2026-02-25T00:35:34.466Z","repository":{"id":81890010,"uuid":"359520166","full_name":"berquerant/emacs-little-async","owner":"berquerant","description":"Small asynchronous process execution library for myself","archived":false,"fork":false,"pushed_at":"2025-09-14T18:11:31.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-31T12:02:25.287Z","etag":null,"topics":["emacs-lisp"],"latest_commit_sha":null,"homepage":"","language":"Emacs Lisp","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/berquerant.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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":"2021-04-19T16:07:52.000Z","updated_at":"2023-04-04T00:19:35.000Z","dependencies_parsed_at":null,"dependency_job_id":"79316b28-d469-4c01-89e8-1c605ee0f35c","html_url":"https://github.com/berquerant/emacs-little-async","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/berquerant/emacs-little-async","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/berquerant%2Femacs-little-async","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/berquerant%2Femacs-little-async/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/berquerant%2Femacs-little-async/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/berquerant%2Femacs-little-async/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/berquerant","download_url":"https://codeload.github.com/berquerant/emacs-little-async/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/berquerant%2Femacs-little-async/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29806665,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-24T22:43:48.403Z","status":"ssl_error","status_checked_at":"2026-02-24T22:43:18.536Z","response_time":75,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["emacs-lisp"],"created_at":"2024-12-13T13:14:27.644Z","updated_at":"2026-02-25T00:35:34.436Z","avatar_url":"https://github.com/berquerant.png","language":"Emacs Lisp","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Little things async\n\nSmall asynchronous process execution library for myself.\n\n## Usage\n\n``` bash\n# test.sh\n#!/bin/bash\necho \"to stderr\" \u003e\u00262\ngrep . -o | while read x ; do sleep 0.2 ; echo \"$x\" ; done\n```\n\n``` emacs-lisp\n(little-async-start-process '(\"/path/to/test.sh\")\n                            :input \"Hello!\"\n                            :filter (lambda (p output)\n                                      (with-current-buffer\n                                          (get-buffer-create \"*tmp*\")\n                                        (insert (format \"GOT %s\" output))))\n                            :stderr \"*tmp-stderr*\")\n```\n\nYou will see below in `*tmp*` buffer:\n\n```\nGOT H\nGOT e\nGOT l\nGOT l\nGOT o\nGOT !\n```\n\nEach line is written every 0.2 seconds. Meanwhile, Emacs will not be blocked.\n\nYou will see belo in `*tmp-stderr*` buffer:\n\n```\nto stderr\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fberquerant%2Femacs-little-async","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fberquerant%2Femacs-little-async","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fberquerant%2Femacs-little-async/lists"}