{"id":18597314,"url":"https://github.com/wiremoons/bigrm","last_synced_at":"2025-05-16T13:33:46.101Z","repository":{"id":83457266,"uuid":"405603707","full_name":"wiremoons/bigrm","owner":"wiremoons","description":"Get the latest weather forecast for a given location in the 'big room' - aka outdoors on planet earth.","archived":false,"fork":false,"pushed_at":"2024-03-22T10:28:32.000Z","size":208,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-02-17T23:44:45.060Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wiremoons.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2021-09-12T09:50:32.000Z","updated_at":"2021-11-28T14:10:56.000Z","dependencies_parsed_at":"2024-12-26T21:23:58.503Z","dependency_job_id":"b0ac7814-230d-49d6-aac4-3395e56d2d50","html_url":"https://github.com/wiremoons/bigrm","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiremoons%2Fbigrm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiremoons%2Fbigrm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiremoons%2Fbigrm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiremoons%2Fbigrm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wiremoons","download_url":"https://codeload.github.com/wiremoons/bigrm/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254538547,"owners_count":22087885,"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":[],"created_at":"2024-11-07T01:27:39.674Z","updated_at":"2025-05-16T13:33:46.084Z","avatar_url":"https://github.com/wiremoons.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/hyperium/hyper/master/LICENSE)\n[![tag](https://img.shields.io/github/v/release/wiremoons/bigrm.svg)](https://github.com/wiremoons/bigrm/releases)\n[![](https://img.shields.io/badge/deno-v1.19.0-green.svg)](https://github.com/denoland/deno)\n\n# bigrm\n\nDeno app to obtain the latest weather forecast for a given location on earth.\n\n`bigrm` : _big room_ as in outside.\n\nA screenshot of the application showing weather forecast data is below:\n\n![bigrm.ts screenshot](images/screen1.png)\n\n## Main features of bigrm\n\nThe program is written to run in a terminal window and check for the current\nweather forecast at the user supplied location. Main features include:\n\n- to be added.\n\n**NOTE: a free OpenWeather API is needed to use the program.** To sign up and\nobtain an API key use the OpenWeather web page here for more details of the\noptions available: https://openweathermap.org/price\n\n## Downloading\n\nDownload the program to your computer - the simplest method is to clone this\nGitHub repo with `git` as below:\n\n```console\ngit clone https://github.com/wiremoons/bigrm.git\n```\n\nThe program is the _TypeScript_ file named: `bigrm.ts`. See below for options on\nhow to run it.\n\n## Running the program\n\nThe program can be run either as a Deno script or as a self contained compiled\nprogram. See information below if needed on **Installing Deno**.\n\nOnce the GitHub repo is cloned to you computer, ensure you are in its directory\nfirst.\n\nOn operating systems such as _Linux_, _macOS_, and _WSL_ the program can be\nexecuted as a script directly. Just ensure the `bigrm.ts` is made executable\n(see `chmod` command below), and then run it directly with: `./bigrm.ts`\n\n```console\nchmod 755 bigrm.ts\n```\n\nThe program can be run with _Deno_ using the command:\n\n```console\ndeno run --quiet --allow-read=. --allow-net=api.openweathermap.org --location https://wiremoons.com/bigrm ./bigrm.ts\n```\n\nNOTE: the ability to compile the program is not possible due to\n[Deno Bug #10693](https://github.com/denoland/deno/issues/10693). Once this is\nfixed, the program can be compiled with _Deno_ using the command:\n\n```console\ndeno compile --quiet --allow-read=. --allow-net=api.openweathermap.org --location https://wiremoons.com/bigrm ./bigrm.ts\n```\n\n### Installing Deno\n\nFirst ensure you have installed a copy of the `deno` or `deno.exe` program, and\nit is in your operating systems path. See the relevant\n[Deno install instruction](https://github.com/denoland/deno_install) or just\ndownload the\n[Deno latest release version](https://github.com/denoland/deno/releases)\ndirectly.\n\nInstall is easy as it is just a single binary executable file - just download a\ncopy and add it to a directory in your path.\n\n## Development Information\n\nThe application in written using the _Deno_ runtime and the _TypeScript_\nprogramming language, so can be used on any operating systems support by _Deno_,\nsuch as _Windows_, _Linux_, _macOS_, etc. More information about Deno is\navailable here:\n\n- [Deno's web site](https://deno.land/)\n- [Deno on GitHub](https://github.com/denoland)\n\n## Licenses\n\nThe `bigrm` application is provided under the _MIT open source license_. A copy\nof the MIT license file is [here](./LICENSE).\n\nThe [OpenWeather API](https://openweathermap.org/api) information is provided\nfor non commercial use via the _under Creative Commons Attribution-ShareAlike\n4.0 International licence (CC BY-SA 4.0)_ license. A copy of the license file is\n[here](https://creativecommons.org/licenses/by-sa/4.0/). See the\n[OpenWeather FAQ 'License' section](https://openweathermap.org/faq) for more\ndetails.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwiremoons%2Fbigrm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwiremoons%2Fbigrm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwiremoons%2Fbigrm/lists"}