{"id":20635913,"url":"https://github.com/darkovulicevic/https_app","last_synced_at":"2026-04-28T12:02:16.266Z","repository":{"id":207967814,"uuid":"720521368","full_name":"darkovulicevic/https_app","owner":"darkovulicevic","description":"This project aims to create a secure Angular application that will be served over HTTPS. HTTPS (Hypertext Transfer Protocol Secure) ensures secure communication between a client and a server by encrypting data. ","archived":false,"fork":false,"pushed_at":"2024-02-06T10:41:27.000Z","size":191,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-02T06:34:13.090Z","etag":null,"topics":["angular","https","javascript","localhost","shell-script","ssl-certificates","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/darkovulicevic.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}},"created_at":"2023-11-18T18:35:16.000Z","updated_at":"2024-02-21T22:49:03.000Z","dependencies_parsed_at":"2024-11-16T15:19:15.596Z","dependency_job_id":null,"html_url":"https://github.com/darkovulicevic/https_app","commit_stats":null,"previous_names":["theend7/https_app","darkovulicevic/https_app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/darkovulicevic/https_app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darkovulicevic%2Fhttps_app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darkovulicevic%2Fhttps_app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darkovulicevic%2Fhttps_app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darkovulicevic%2Fhttps_app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/darkovulicevic","download_url":"https://codeload.github.com/darkovulicevic/https_app/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darkovulicevic%2Fhttps_app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32379629,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T11:25:28.583Z","status":"ssl_error","status_checked_at":"2026-04-28T11:25:05.435Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["angular","https","javascript","localhost","shell-script","ssl-certificates","typescript"],"created_at":"2024-11-16T15:08:07.522Z","updated_at":"2026-04-28T12:02:16.249Z","avatar_url":"https://github.com/darkovulicevic.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Secure Angular App with HTTPS\n\n# Overview \nThis project aims to create a secure Angular application that will be served over HTTPS. HTTPS (Hypertext Transfer Protocol Secure) ensures secure communication between a client and a server by encrypting data. By serving the Angular app over HTTPS, we enhance security and protect sensitive information from potential attackers.\n\n# Project Features\n\n- **Secure Communication:** The application ensures secure communication between the client and server by utilizing HTTPS. This is achieved through the encryption of data, safeguarding sensitive information from potential security threats.\n\n- **SSL Certificate Generation:** The project includes a script (`gencerts.sh`) to generate SSL certificates (`cert.pem` and `key.pem`). These certificates are crucial for establishing a secure connection over HTTPS. Follow the provided instructions to run the script and generate the necessary certificates.\n\n- **Easy Setup:** The project provides a straightforward setup process, allowing users to quickly clone the repository, generate SSL certificates, and run the Angular application locally over HTTPS. Clear and concise instructions guide users through each step.\n\n- **Prerequisites Check:** To ensure a smooth setup, the project includes a list of prerequisites. Users are prompted to have Node.js installed on their machines and the Angular CLI installed globally before proceeding with the setup process.\n\n- **Development Environment Considerations:** The notes section emphasizes the importance of configuring the development environment appropriately, especially when working with self-signed certificates. Users are advised to follow the provided guidance to address any potential issues related to self-signed certificates during development.\n\n- **Enhanced User Experience:** By serving the Angular application over HTTPS, the project aims to provide a safer and more secure browsing experience for users. The encryption of data transmission adds an extra layer of protection, instilling confidence in users while interacting with the application.\n\n## Getting started\n_To set up and run this project, follow these steps:_\n\n## Install dependencies \n_Node.js installed on your machine_\n_Angular CLI installed globally (npm install -g @angular/cli)_\n\n**Steps:**\n\n1. Clone this repository:\n```\n  git clone \u003crepository_url\u003e\n  cd \u003crepository_name\u003e\n```\n2. Navigate to the certs directory:\n```\n  cd certs\n```\n3. Make the gencerts.sh script executable:\n```\n  chmod +x gencerts.sh\n```\n4. Run the script to generate SSL certificates:\n```\n  ./gencerts.sh\n```\n  _This script will generate cert.pem and key.pem files required for serving the app over HTTPS._\n\n5. Navigate to the app_https directory:\n```\n  cd ../app_https\n```\n6. Install dependencies:\n```\n  npm install\n```\n7. Run the Angular app:\n```\n  npm run app\n```\n\n_The Angular app will be served locally over HTTPS._\n\n## Notes\n\n- Ensure that you have followed all the steps properly, especially generating SSL certificates using the `gencerts.sh` script.\n- You may need to adjust your browser settings to allow connections to the locally served HTTPS application.\n- For development purposes, you might encounter issues with self-signed certificates. Please make sure to configure your development environment accordingly.\n\nBy following these steps, you'll have a secure Angular application served over HTTPS, providing a safer browsing experience for your users.\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdarkovulicevic%2Fhttps_app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdarkovulicevic%2Fhttps_app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdarkovulicevic%2Fhttps_app/lists"}