{"id":17196601,"url":"https://github.com/johnnovak/nim-rtmidi","last_synced_at":"2026-03-06T02:41:07.600Z","repository":{"id":70773369,"uuid":"224990632","full_name":"johnnovak/nim-rtmidi","owner":"johnnovak","description":"Nim wrapper for the cross-platform C++ RtMidi library","archived":false,"fork":false,"pushed_at":"2024-05-20T06:12:13.000Z","size":48,"stargazers_count":7,"open_issues_count":2,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-13T20:01:47.386Z","etag":null,"topics":["midi","nim","nim-lang","rtmidi","wrapper"],"latest_commit_sha":null,"homepage":"","language":"C++","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/johnnovak.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":"2019-11-30T09:46:23.000Z","updated_at":"2024-02-08T13:33:32.000Z","dependencies_parsed_at":"2024-11-07T23:10:31.265Z","dependency_job_id":"d31843f5-a48b-4072-8027-d868dd7a6563","html_url":"https://github.com/johnnovak/nim-rtmidi","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/johnnovak/nim-rtmidi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnnovak%2Fnim-rtmidi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnnovak%2Fnim-rtmidi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnnovak%2Fnim-rtmidi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnnovak%2Fnim-rtmidi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/johnnovak","download_url":"https://codeload.github.com/johnnovak/nim-rtmidi/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnnovak%2Fnim-rtmidi/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30159831,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T22:39:40.138Z","status":"online","status_checked_at":"2026-03-06T02:00:08.268Z","response_time":250,"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":["midi","nim","nim-lang","rtmidi","wrapper"],"created_at":"2024-10-15T01:53:42.776Z","updated_at":"2026-03-06T02:41:07.573Z","avatar_url":"https://github.com/johnnovak.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# nim-rtmidi\r\n\r\n*Work in progress, not ready for public consumption yet!*\r\n\r\nThis is a Nim wrapper for the [RtMidi](https://github.com/thestk/rtmidi)\r\ncross-platform C++ MIDI library. **RtMidi** provides a common API for realtime\r\nMIDI input/output across the following operating systems:\r\n\r\n* Linux (ALSA, JACK)\r\n* Mac OS X (CoreMIDI, JACK)\r\n* Windows (Multimedia Library)\r\n\r\nThe wrapper provides a pleasant Nim interface to the functions provided by the\r\nC API.\r\n\r\nFor more information please refer to the [official RtMidi\r\ntutorial](https://www.music.mcgill.ca/~gary/rtmidi/index.html#license) and\r\ncheck out the [Nim examples](/examples).\r\n\r\n## Versioning\r\n\r\nVersioning follows the `x.y.z.w` scheme, where `x.y.z` corresponds to the\r\nRtMidi version being wrapped (e.g. `4.0.0`) and `w` to the patch version of the Nim\r\nwrapper (e.g.  `4.4.0.1`).\r\n\r\n## Installation\r\n\r\nThe best way to install the latest version of the package is via `nimble`:\r\n\r\n```\r\nnimble install rtmidi\r\n```\r\n\r\n## Examples\r\n\r\nCompile and run any of the examples by running the following command\r\nin the [examples](/examples) directory:\r\n~~~\r\nnim c -r \u003cexample\u003e\r\n~~~\r\n\r\nAlternatively, you can invoke the `examples` nimble task in the project root\r\ndirectory to compile all examples:\r\n\r\n```\r\nnimble examples\r\n```\r\n\r\n### Selecting the target API\r\n\r\nOn Windows, the Windows Multimedia Library is always used so there's no need\r\nto configure anything.\r\n\r\nOn OS X, the symbols `rtMidiCore` or `rtMidiJack` need to be provided to\r\nindicate which API(s) to compile the library for (note that only CoreMIDI has\r\nbeen tested).\r\n\r\nOn Linux, the symbols `rtMidiAlsa` or `rtMidiJack` need to be provided to\r\nindicate which API(s) to compile the library for (note that Linux has not been\r\ntested at all).\r\n\r\n\r\n## Documentation\r\n\r\nTODO\r\n\r\n## License\r\n\r\n**RtMidi** is the copyright of Gary P. Scavone and is released under\r\na modified MIT license, with the added *feature* that modifications be sent to\r\nthe developer. This library is also released under the MIT license to avoid\r\nconfusion.\r\n\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjohnnovak%2Fnim-rtmidi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjohnnovak%2Fnim-rtmidi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjohnnovak%2Fnim-rtmidi/lists"}