{"id":13797742,"url":"https://github.com/bluedaniel/kakapo-app","last_synced_at":"2025-04-24T05:20:29.694Z","repository":{"id":136844844,"uuid":"42681928","full_name":"bluedaniel/Kakapo-app","owner":"bluedaniel","description":":musical_note: [Web \u0026 Desktop] An open source ambient sound mixer","archived":false,"fork":false,"pushed_at":"2018-12-03T10:50:54.000Z","size":7458,"stargazers_count":391,"open_issues_count":7,"forks_count":32,"subscribers_count":16,"default_branch":"develop","last_synced_at":"2025-04-03T08:37:13.437Z","etag":null,"topics":["desktop","electron","kakapo","react"],"latest_commit_sha":null,"homepage":"http://kakapo.co/app.html","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bluedaniel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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}},"created_at":"2015-09-17T21:05:40.000Z","updated_at":"2025-02-11T15:48:16.000Z","dependencies_parsed_at":null,"dependency_job_id":"c1d0a069-63d5-4004-ab9e-ee275f55be39","html_url":"https://github.com/bluedaniel/Kakapo-app","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluedaniel%2FKakapo-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluedaniel%2FKakapo-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluedaniel%2FKakapo-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bluedaniel%2FKakapo-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bluedaniel","download_url":"https://codeload.github.com/bluedaniel/Kakapo-app/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250567550,"owners_count":21451454,"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":["desktop","electron","kakapo","react"],"created_at":"2024-08-04T00:00:29.218Z","updated_at":"2025-04-24T05:20:29.673Z","avatar_url":"https://github.com/bluedaniel.png","language":"JavaScript","readme":"[![Build Status](https://travis-ci.org/bluedaniel/Kakapo-app.svg)](https://travis-ci.org/bluedaniel/Kakapo-app) [![Dependency Status](https://david-dm.org/bluedaniel/kakapo-app.svg)](https://david-dm.org/bluedaniel/kakapo-app)\n\n\u003cimg src=\"https://raw.githubusercontent.com/bluedaniel/Kakapo-assets/master/images/kakapo_border.png\" width=\"128\" height=\"128\" align=\"right\" /\u003e\n\n[Kakapo](http://kakapo.co) is an open source ambient sound mixer for relaxation or productivity.\n\nThis repo builds a website and desktop version (for Mac OSX \u0026 Windows).\n\n[Download the latest desktop version here](http://www.kakapo.co/app.html), or install via [homebrew-cask](http://caskroom.io/) with `brew cask install kakapo`.\n\nSee also: [Kakapo for iOS \u0026 Android](https://github.com/bluedaniel/Kakapo-native) - [Kakapo for Chrome](https://github.com/bluedaniel/Kakapo-chrome).\n\nIt's built using:\n\n- [Electron](https://github.com/atom/electron) - Wraps app for desktop.\n- [React](https://github.com/facebook/react) - UI \u0026 view components.\n- [Redux](https://github.com/rackt/redux) - State management.\n- [Redux Sagas](https://github.com/redux-saga/redux-saga) - Handles side effects.\n- [Ramda](https://github.com/ramda/ramda) - For functional Javascript.\n- [HowlerJs](https://github.com/goldfire/howler.js) - Handles audio objects.\n- [ReactIntl](https://github.com/yahoo/react-intl) - Internationalisation.\n- [PostCSS](https://github.com/postcss/postcss) - Transform JS styles.\n- [Webpack](https://github.com/webpack/webpack) - Bundling JS and hot module replacement.\n\nTests using [Jest](https://github.com/facebook/jest) and a bit of [Enzyme](https://github.com/airbnb/enzyme).\n\nCode coverage reporting provided by [Coveralls](https://coveralls.io/).\n\n\u003cimg src=\"https://raw.githubusercontent.com/bluedaniel/Kakapo-assets/master/images/screenshots/web_app.jpg\" /\u003e\n\n## Install and run\n\n``` bash\n# Clone\n$ git clone https://github.com/bluedaniel/Kakapo-app.git\n\n# Install\n$ cd Kakapo-app \u0026\u0026 npm install\n\n# Convert .mp3 files to .ogg with ffmpeg\n$ brew install ffmpeg --with-libvpx --with-libvorbis\n$ cd node_modules/kakapo-assets\n$ sh mp3-to-ogg.sh\n\n# Run desktop\n$ npm start -- --platform=desktop\n\n# Run website\n$ npm start -- --platform=web\n```\n\nBoth the website and desktop app should automatically open and have hot module enabled for live changes.\n\n## Build for production\n\n``` bash\n# Build website\n$ npm run build -- --platform=web --production\n\n# Build desktop\n$ npm run build -- --platform=desktop --production\n\n# Sign apps and zip after desktop build\n$ npm run installer-mac \u0026\u0026 npm run installer-win\n```\n\n## Testing\n\n``` bash\n# Test with watch\n$ npm test -- --watch\n\n# Test\n$ npm test\n```\n\n## Bugs and Feature Requests\n\nHave a bug or a feature request? [Please open a new issue here](https://github.com/bluedaniel/Kakapo-app/issues/new).\n","funding_links":[],"categories":["Apps"],"sub_categories":["Open Source"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbluedaniel%2Fkakapo-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbluedaniel%2Fkakapo-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbluedaniel%2Fkakapo-app/lists"}