{"id":30181372,"url":"https://github.com/cesiumgs/cesiumjs-workshop","last_synced_at":"2026-03-10T14:02:50.609Z","repository":{"id":299460183,"uuid":"1000413687","full_name":"CesiumGS/cesiumjs-workshop","owner":"CesiumGS","description":"CesiumJS Deep Dive Workshop for the 2025 Cesium Developer Conference","archived":false,"fork":false,"pushed_at":"2025-07-02T18:42:56.000Z","size":4166,"stargazers_count":4,"open_issues_count":0,"forks_count":2,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-23T02:52:56.178Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CesiumGS.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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-11T18:37:36.000Z","updated_at":"2025-07-29T02:21:36.000Z","dependencies_parsed_at":"2025-06-16T17:55:51.636Z","dependency_job_id":"0f078860-6ddc-4d98-9594-3930507986b3","html_url":"https://github.com/CesiumGS/cesiumjs-workshop","commit_stats":null,"previous_names":["cesiumgs/cesiumjs-workshop"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/CesiumGS/cesiumjs-workshop","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CesiumGS%2Fcesiumjs-workshop","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CesiumGS%2Fcesiumjs-workshop/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CesiumGS%2Fcesiumjs-workshop/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CesiumGS%2Fcesiumjs-workshop/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CesiumGS","download_url":"https://codeload.github.com/CesiumGS/cesiumjs-workshop/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CesiumGS%2Fcesiumjs-workshop/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30336074,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T12:41:07.687Z","status":"ssl_error","status_checked_at":"2026-03-10T12:41:06.728Z","response_time":106,"last_error":"SSL_read: 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":[],"created_at":"2025-08-12T08:36:03.963Z","updated_at":"2026-03-10T14:02:50.602Z","avatar_url":"https://github.com/CesiumGS.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CesiumJS Deep Dive Workshop\n\nStater code for the [CesiumJS Deep Dive Workshop [slides]](DevCon_CesiumJS_DeepDive.pdf), part of the 2025 Cesium Developer Conference.\n\nThis example repo is designed to get a new developer up and running with a starter [CesiumJS](https://cesium.com/platform/cesiumjs/) app. It's built using Vite and is based on [`cesium-vite-example`](https://github.com/CesiumGS/cesium-vite-example).\n\n## Requirements\n\n- A [Cesium ion account](https://ion.cesium.com/signup)\n- [Visual Studio Code](https://code.visualstudio.com/), or an IDE of choice\n- [NodeJS](https://nodejs.org/en), version 20+, with npm\n  - We recommend [installing via nvm](https://nodejs.org/en/download) for first-time setup\n- Optional: [Git](https://docs.github.com/en/get-started/git-basics/set-up-git#platform-all) to clone from example repo\n\n## Setup\n\n1. Download a copy of the code:\n   - If using Git, [**fork this repository** and sync it on your local machine](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/fork-a-repo) at the desired location.\n   - Otherwise, [**download the source code**](https://docs.github.com/en/repositories/working-with-files/using-files/downloading-source-code-archives) and unzip to your desired location.\n\n2. In Visual Studio Code, [open the workspace](https://code.visualstudio.com/docs/editing/workspaces/workspaces) by using **File** \u003e **Open Folder...** and selecting the `cesiumjs-workshop` directory from the previous step.\n3. Open `src/main.js`.\n4. Create a new Cesium ion token.\n\n   ![Copy your Cesium ion token](./doc/cesium-ion-token.png)\n   - In Cesium ion, open the [**Access Tokens**](https://ion.cesium.com/tokens?) tab.\n   - Press the **Create token**, button.\n   - Give the token a name and leave the default permission settings. Press **Create**.\n   - Copy the contents from **Token**.\n\n   [Learn more about managing access tokens in Cesium ion.](https://cesium.com/learn/ion/cesium-ion-access-tokens/)\n\n   \u003e [!TIP]\n   \u003e It’s best practice to create a unique access token for each application you develop and to grant the minimal required access in order for your app to work. See [**Security best practices for tokens**](https://cesium.com/learn/ion/cesium-ion-access-tokens/#security-best-practices-for-tokens).\n\n5. Back in `src/main.js` replace the content of `your_ion_token_here` by pasting the access token from the previous step.\n6. Open the terminal by using **Terminal** \u003e **New Terminal**.\n7. Run the following commands to setup, build, and run the app:\n\n   ```sh\n   npm install # Install project dependencies\n   ```\n\n   ```sh\n   npm run dev # Build and start the development server\n   ```\n\n8. In a browser, navigate to [`http://localhost:5173/`](http://localhost:5173/)\n\n## Developer scripts\n\nThis project includes a few tools to support development. Any of the following commands can be run in terminal.\n\n- `npm run eslint`: Find and fix common JavaScript code issues using [ESLint](https://eslint.org/)\n- `npm run prettier`: Format all the code to a consistent style using [Prettier](https://prettier.io/)\n- `npm run dev`: Start a development server at [`http://localhost:5173/`](http://localhost:5173/) using [Vite](https://vite.dev/)\n- `npm run build`: Run an optimized build for production and output to the `dist/` directory\n\n## Resources\n\n- [CesiumJS Docs](https://cesium.com/docs/cesiumjs-ref-doc/): The JavaScript API reference documentation\n- [Sandcastle](https://sandcastle.cesium.com/): A live-coding environment with a large gallery of code examples\n- [Cesium Community Forum](https://community.cesium.com/): Where the community and the development team ask and answer Cesium-related questions\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcesiumgs%2Fcesiumjs-workshop","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcesiumgs%2Fcesiumjs-workshop","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcesiumgs%2Fcesiumjs-workshop/lists"}