{"id":15436050,"url":"https://github.com/uetchy/juno","last_synced_at":"2025-04-15T22:53:57.454Z","repository":{"id":9962822,"uuid":"63856564","full_name":"uetchy/juno","owner":"uetchy","description":"☄️ A minimal app serving Jupyter Notebook on macOS menubar.","archived":false,"fork":false,"pushed_at":"2023-01-01T03:43:48.000Z","size":5741,"stargazers_count":66,"open_issues_count":17,"forks_count":4,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-15T22:53:52.780Z","etag":null,"topics":["electron","jupyter","jupyter-notebook","macos"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/uetchy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":["uetchy"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2016-07-21T09:35:46.000Z","updated_at":"2025-03-18T22:28:27.000Z","dependencies_parsed_at":"2023-01-11T15:35:21.797Z","dependency_job_id":null,"html_url":"https://github.com/uetchy/juno","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uetchy%2Fjuno","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uetchy%2Fjuno/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uetchy%2Fjuno/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uetchy%2Fjuno/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/uetchy","download_url":"https://codeload.github.com/uetchy/juno/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249167439,"owners_count":21223505,"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":["electron","jupyter","jupyter-notebook","macos"],"created_at":"2024-10-01T18:47:54.879Z","updated_at":"2025-04-15T22:53:57.427Z","avatar_url":"https://github.com/uetchy.png","language":"JavaScript","readme":"\u003cp align=\"center\"\u003e\n  \u003cimg alt=\"logo\" width=\"200\" src=\"http://uechi-public.s3-website-ap-northeast-1.amazonaws.com/github/juno/header.png\" /\u003e\u003cbr/\u003e\n  \u003cb\u003eJupyter Notebook stays on macOS menubar.\u003c/b\u003e\u003cbr/\u003e\u003cbr/\u003e\u003cbr/\u003e\n  \u003cimg alt=\"demo gif\" src=\"https://uetchy.github.io/juno/assets/demo.gif\" /\u003e\n\u003c/p\u003e\n\n[![GitHub release](https://img.shields.io/github/release/uetchy/juno.svg?maxAge=2592000)](https://github.com/uetchy/juno/releases/latest)\n[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/uetchy/juno/master/LICENSE)\n[![GitHub issues](https://img.shields.io/github/issues/uetchy/juno.svg)](https://github.com/uetchy/juno/issues)\n[![Join the chat at https://gitter.im/uetchy/juno](https://badges.gitter.im/uetchy/juno.svg)](https://gitter.im/uetchy/juno?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\n[![Build Status](https://travis-ci.com/uetchy/juno.svg?branch=master)](https://travis-ci.com/uetchy/juno)\n\n## Download\n\nSee [releases](https://github.com/uetchy/juno/releases).\n\n### Supported platforms\n\n- macOS\n\n## Requirements\n\n- Jupyter Notebook\n\n### How to install Jupyter Notebook\n\n```\nbrew install python3\npip3 install jupyter\njupyter notebook\n```\n\n## Config\n\nJuno config is located on `~/.junorc.json`.\n\ndefault parameters are:\n\n```jsonc\n{\n  \"jupyterCommand\": \"/usr/local/bin/jupyter-notebook\", // executable path for Jupyter Notebook\n  \"jupyterPort\": 8888, // server port\n  \"jupyterHome\": \"~\", // root folder\n  \"openBrowserOnStartup\": true, // set true if let Juno open browser after launch\n  \"preferLab\": false // open Jupyter Lab instead of Jupyter Notebook\n}\n```\n\n### JupyterLab\n\nYou can also specify `/usr/local/bin/jupyter-lab` to `jupyterCommand` to utilize\nJupyter Lab (you may also want to install `jupyterlab` via `pip3 install jupyterlab`.)\n\n### pyenv\n\nPut `~/.pyenv/shims/jupyter` into `jupyterCommand` if you are on pyenv-enabled\nenvironment.\n\n## Launch Juno from Terminal\n\nAdd `juno` command to open Jupyter notebooks from Terminal. Put following code\nto your shell config file.\n\n```bash\njuno() {\n  open -a Juno $1\n}\n```\n\nto open a notebook:\n\n```\njuno \"Untitled.ipynb\"\n```\n\n## Bugs\n\nFeel free to [report issues](https://github.com/uetchy/juno/issues/new).\n\n## Roadmap\n\n- [x] Launch Juno in specified directory\n- [x] Terminal integration\n- [x] Test suite\n- [x] Auto update\n\n## Screenshots\n\n![](http://uechi-public.s3.amazonaws.com/github/juno/screenshot.png)\n![](http://uechi-public.s3.amazonaws.com/github/juno/open-with-juno.png)\n\n## Development Installation\n\n```\nnpm install\nnpm start\n```\n\n### Test \u0026 Build\n\n```\nnpm test\nnpm run build\n```\n\n## License\n\nMIT © [Yasuaki Uechi](y@uechi.io)\n","funding_links":["https://github.com/sponsors/uetchy"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuetchy%2Fjuno","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fuetchy%2Fjuno","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuetchy%2Fjuno/lists"}