{"id":15413180,"url":"https://github.com/tomwayson/esri-loader-electron","last_synced_at":"2025-08-12T05:15:30.690Z","repository":{"id":148607080,"uuid":"165742209","full_name":"tomwayson/esri-loader-electron","owner":"tomwayson","description":"A fork of electron-quick-start that demonstrates how to use esri-loader in an electron app","archived":false,"fork":false,"pushed_at":"2019-01-15T00:14:34.000Z","size":485,"stargazers_count":1,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-05T18:52:43.853Z","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":"cc0-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tomwayson.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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-01-14T22:01:00.000Z","updated_at":"2019-07-24T20:27:09.000Z","dependencies_parsed_at":"2023-05-20T16:45:48.093Z","dependency_job_id":null,"html_url":"https://github.com/tomwayson/esri-loader-electron","commit_stats":{"total_commits":87,"total_committers":41,"mean_commits":"2.1219512195121952","dds":0.7816091954022988,"last_synced_commit":"0e4295d152ed6a3767673c52804fe73ebeeb6e64"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tomwayson/esri-loader-electron","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomwayson%2Fesri-loader-electron","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomwayson%2Fesri-loader-electron/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomwayson%2Fesri-loader-electron/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomwayson%2Fesri-loader-electron/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tomwayson","download_url":"https://codeload.github.com/tomwayson/esri-loader-electron/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomwayson%2Fesri-loader-electron/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270005591,"owners_count":24510939,"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-08-12T02:00:09.011Z","response_time":80,"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":"2024-10-01T16:55:57.053Z","updated_at":"2025-08-12T05:15:30.631Z","avatar_url":"https://github.com/tomwayson.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# esri-loader-electron\n\n![Screenshot of electron app with an ArcGIS map](./esri-loader-electron-screenshot.png)\n\nA fork of [electron-quick-start](https://github.com/electron/electron-quick-start) that demonstrates how to use [esri-loader](https://github.com/Esri/esri-loader) in an electron application.\n\n## Adding esri-loader to an Electron Application\n\nTo add esri-loader to your own electron application, all you need to do is:\n\n1. Install esri-loader w/ `npm install esri-loader`\n1. Add a [container for the map or scene view](./index.html#L13-L14).\n1. Add the code to load and use esri modules to [your JavaScript](./renderer.js)\n\nSee the esri-loader documentation for more information on [how to use esri-loader](https://github.com/Esri/esri-loader#usage).\n\nThe following comes from the electron-quick-start README:\n\n## Electron Quick Start\n\n**Clone and run for a quick way to see Electron in action.**\n\nThis is a minimal Electron application based on the [Quick Start Guide](https://electronjs.org/docs/tutorial/quick-start) within the Electron documentation.\n\n**Use this app along with the [Electron API Demos](https://electronjs.org/#get-started) app for API code examples to help you get started.**\n\nA basic Electron application needs just these files:\n\n- `package.json` - Points to the app's main file and lists its details and dependencies.\n- `main.js` - Starts the app and creates a browser window to render HTML. This is the app's **main process**.\n- `index.html` - A web page to render. This is the app's **renderer process**.\n\nYou can learn more about each of these components within the [Quick Start Guide](https://electronjs.org/docs/tutorial/quick-start).\n\n## To Use\n\nTo clone and run this repository you'll need [Git](https://git-scm.com) and [Node.js](https://nodejs.org/en/download/) (which comes with [npm](http://npmjs.com)) installed on your computer. From your command line:\n\n```bash\n# Clone this repository\ngit clone https://github.com/electron/esri-loader-electron\n# Go into the repository\ncd esri-loader-electron\n# Install dependencies\nnpm install\n# Run the app\nnpm start\n```\n\nNote: If you're using Linux Bash for Windows, [see this guide](https://www.howtogeek.com/261575/how-to-run-graphical-linux-desktop-applications-from-windows-10s-bash-shell/) or use `node` from the command prompt.\n\n## Resources for Learning Electron\n\n- [electronjs.org/docs](https://electronjs.org/docs) - all of Electron's documentation\n- [electronjs.org/community#boilerplates](https://electronjs.org/community#boilerplates) - sample starter apps created by the community\n- [electron/esri-loader-electron](https://github.com/electron/esri-loader-electron) - a very basic starter Electron app\n- [electron/simple-samples](https://github.com/electron/simple-samples) - small applications with ideas for taking them further\n- [electron/electron-api-demos](https://github.com/electron/electron-api-demos) - an Electron app that teaches you how to use Electron\n- [hokein/electron-sample-apps](https://github.com/hokein/electron-sample-apps) - small demo apps for the various Electron APIs\n\n## License\n\n[CC0 1.0 (Public Domain)](LICENSE.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftomwayson%2Fesri-loader-electron","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftomwayson%2Fesri-loader-electron","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftomwayson%2Fesri-loader-electron/lists"}