{"id":19294255,"url":"https://github.com/mdecker-mobilecomputing/nodejs_express_bmi","last_synced_at":"2026-04-15T19:31:07.807Z","repository":{"id":219431330,"uuid":"749021806","full_name":"MDecker-MobileComputing/Nodejs_Express_BMI","owner":"MDecker-MobileComputing","description":"Einfacher REST-Endpunkt mit Nodejs+Express, der die Berechnung \"Body Mass Index\" (BMI) durchführen kann","archived":false,"fork":false,"pushed_at":"2026-01-26T12:59:04.000Z","size":61,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-27T01:59:19.130Z","etag":null,"topics":["body-mass-index","express-js","github-actions","nodejs","rest-api"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MDecker-MobileComputing.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":"2024-01-27T11:01:27.000Z","updated_at":"2026-01-26T12:59:51.000Z","dependencies_parsed_at":"2024-02-18T11:25:47.741Z","dependency_job_id":"ef4d1a32-ccbb-46b4-8991-fb31d98d3cc7","html_url":"https://github.com/MDecker-MobileComputing/Nodejs_Express_BMI","commit_stats":null,"previous_names":["mdecker-mobilecomputing/nodejs_express_bmi"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MDecker-MobileComputing/Nodejs_Express_BMI","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MDecker-MobileComputing%2FNodejs_Express_BMI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MDecker-MobileComputing%2FNodejs_Express_BMI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MDecker-MobileComputing%2FNodejs_Express_BMI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MDecker-MobileComputing%2FNodejs_Express_BMI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MDecker-MobileComputing","download_url":"https://codeload.github.com/MDecker-MobileComputing/Nodejs_Express_BMI/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MDecker-MobileComputing%2FNodejs_Express_BMI/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31856837,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"ssl_error","status_checked_at":"2026-04-15T15:24:39.138Z","response_time":63,"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":["body-mass-index","express-js","github-actions","nodejs","rest-api"],"created_at":"2024-11-09T22:37:42.716Z","updated_at":"2026-04-15T19:31:07.783Z","avatar_url":"https://github.com/MDecker-MobileComputing.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# REST-API \"Body Mass Index (BMI)\" mit Nodejs+Express #\n\n\u003cbr\u003e\n\nEinfache REST-API für [BMI-Berechnung](https://www.barmer.de/gesundheit-verstehen/leben/abnehmen-diaet/body-mass-index/bmi-rechner-1004244) \nmit [Nodejs](https://nodejs.org) und [Express](https://expressjs.com).\n\n\u003cbr\u003e\n\n----\n\n## Verwendung ##\n\n\u003cbr\u003e\n\nNach Klonen/Download des Repos: `npm install`\n\nWebserver mit REST-API starten: `npm start`\n\n\u003cbr\u003e\n\n----\n\n## Beispiele ##\n\n\u003cbr\u003e\n\nBeispiel für Abfrage für 80kg Körpergewicht und 190cm Körpergröße: http://localhost:8080/bmi?kg=80\u0026cm=190\n```\n{\n  \"erfolg\"   : true,\n  \"bmi\"      : 22.2,\n  \"nachricht\": \"Normalgewicht\"\n}\n```\n\n\u003cbr\u003e\n\nBeispiel für Abfrage mit fehlender Körpergröße: http://localhost:8080/bmi?kg=80\n```\n{\n  \"erfolg\"   : false,\n  \"nachricht\": \"Bitte URL-Parameter \u003ecm\u003c angeben.\"\n}\n```\n\n\u003cbr\u003e\n\nBeispiel für Abfrage mit fehlender Körpergröße: http://localhost:8080/bmi?kg=80\u0026cm=asdf\n```\n{\n  \"erfolg\"   : false,\n  \"nachricht\": \"Wert \\\"asdf\\\" für URL-Parameter \u003ecm\u003c ist keine int-Zahl.\"\n}\n```\n\n\u003cbr\u003e\n\n----\n\n## License ##\n\n\u003cbr\u003e\n\nSee the [LICENSE file](LICENSE.md) for license rights and limitations (BSD 3-Clause License)\nfor the files in this repository.\n\n\u003cbr\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmdecker-mobilecomputing%2Fnodejs_express_bmi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmdecker-mobilecomputing%2Fnodejs_express_bmi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmdecker-mobilecomputing%2Fnodejs_express_bmi/lists"}