{"id":31374630,"url":"https://github.com/sunsetmkt/jupyterlite-xeus","last_synced_at":"2025-09-28T00:34:51.699Z","repository":{"id":300890261,"uuid":"1007484243","full_name":"SunsetMkt/jupyterlite-xeus","owner":"SunsetMkt","description":null,"archived":false,"fork":false,"pushed_at":"2025-06-29T12:31:41.000Z","size":2995,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-24T05:50:00.689Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://jupyterlite-xeus.vercel.app","language":"Jupyter Notebook","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/SunsetMkt.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,"zenodo":null}},"created_at":"2025-06-24T04:34:57.000Z","updated_at":"2025-06-29T12:31:44.000Z","dependencies_parsed_at":"2025-06-24T05:34:12.484Z","dependency_job_id":"d02d938e-f77b-4a22-bf9b-eca6872dde69","html_url":"https://github.com/SunsetMkt/jupyterlite-xeus","commit_stats":null,"previous_names":["sunsetmkt/jupyterlite-xeus"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/SunsetMkt/jupyterlite-xeus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SunsetMkt%2Fjupyterlite-xeus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SunsetMkt%2Fjupyterlite-xeus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SunsetMkt%2Fjupyterlite-xeus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SunsetMkt%2Fjupyterlite-xeus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SunsetMkt","download_url":"https://codeload.github.com/SunsetMkt/jupyterlite-xeus/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SunsetMkt%2Fjupyterlite-xeus/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":277311260,"owners_count":25796890,"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-27T02:00:08.978Z","response_time":73,"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":[],"created_at":"2025-09-28T00:34:47.290Z","updated_at":"2025-09-28T00:34:51.695Z","avatar_url":"https://github.com/SunsetMkt.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Xeus-Lite demo\n\n[![lite-badge](https://jupyterlite.rtfd.io/en/latest/_static/badge.svg)](https://jupyterlite.github.io/xeus-lite-demo/notebooks/?path=demo.ipynb)\n\nThis GitHub template allows you to create deployments of JupyterLite with a custom set of conda packages.\n\n## Warning for multiple language kernels in one deployment\n\nEach kernel and its dependencies should be separated to different environments and load them with `jupyter_lite_config.json`:\n\n```json\n{\n    \"XeusAddon\": {\n        \"environment_file\": [\n            \"environment-python.yml\",\n            \"environment-js.yml\",\n            \"environment-r.yml\",\n            \"environment-cpp.yml\",\n            \"environment-lua.yml\",\n            \"environment-nelson.yml\"\n        ]\n    }\n}\n```\n\nOtherwise there will be a conflict while loading any of the kernels.\n\n## 💡 How to make your own deployment\n\nCreating a new deployment can be done in three easy steps:\n\n**Step 1: Apply the GitHub template**\n\n1. Click the **\"Use this template\"** button in the upper right corner of the GitHub repository.\n2. Choose a name for your project and select the GitHub organization where you want to create it.\n3. Then hit **\"Create repository from template\"** to finalize the setup.\n\n**Step 2: Enable building the GitHub pages from GitHub actions.**\n\n1. Once your repository is created, enable GitHub Pages by configuring GitHub Actions. This will build and deploy your site automatically.\n2. Your deployment will be accessible at the following URL: https://{USERNAME}.github.io/{DEMO_REPO_NAME}.\n\n**Step 3: Customize your conda environment**\n\n1. Update your `environment.yml` file to include the required packages.\n2. This ensures that your environment has all the necessary dependencies.\n\n## 🎬 Visual Guide\n\nFor a step-by-step visual guide, check out the screencast below:\n\n![Deploy your own](deploy.gif)\n\n## 📦 How to install kernels and packages\n\nYou can install specific kernels and extra packages by adding them to the `environment.yml` file.\n\nSee https://jupyterlite-xeus.readthedocs.io/en/latest/environment.html for more documentation.\n\n### Example 1: JupyterLite with NumPy and Matplotlib\n\nTo create a JupyterLite deployment with NumPy and Matplotlib pre-installed, edit the `environment.yml` file as follows:\n\n```yml\nname: xeus-kernel\nchannels:\n    - https://repo.prefix.dev/emscripten-forge-dev\n    - https://repo.prefix.dev/conda-forge\ndependencies:\n    - xeus-python\n    - numpy\n    - matplotlib\n```\n\n### Example 2: JupyterLite with R and coursekata\n\nTo use the R kernel and the coursekata package, edit the environment.yml file as follows:\n\n```yml\nname: xeus-kernel\nchannels:\n    - https://repo.prefix.dev/emscripten-forge-dev\n    - https://repo.prefix.dev/conda-forge\ndependencies:\n    - xeus-r\n    - r-coursekata\n```\n\n### Example 3: JupyterLite with C++\n\nTo use the C++ kernel, edit the environment.yml file as follows:\n\n```yml\nname: xeus-kernel\nchannels:\n    - https://repo.prefix.dev/emscripten-forge-dev\n    - https://repo.prefix.dev/conda-forge\ndependencies:\n    - xeus-cpp\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsunsetmkt%2Fjupyterlite-xeus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsunsetmkt%2Fjupyterlite-xeus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsunsetmkt%2Fjupyterlite-xeus/lists"}