{"id":25188601,"url":"https://github.com/kleinpanic/kleinpanicweb","last_synced_at":"2026-02-14T20:05:16.429Z","repository":{"id":258858229,"uuid":"875808101","full_name":"kleinpanic/kleinpanicWeb","owner":"kleinpanic","description":"Opensource repository for my entire website. ","archived":false,"fork":false,"pushed_at":"2025-03-08T03:01:01.000Z","size":768,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-06T18:06:56.166Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"HTML","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/kleinpanic.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,"zenodo":null}},"created_at":"2024-10-20T21:50:10.000Z","updated_at":"2025-03-08T03:01:05.000Z","dependencies_parsed_at":"2024-12-25T05:26:29.225Z","dependency_job_id":"edc8a754-1ee9-4156-8cb7-3b258a221c75","html_url":"https://github.com/kleinpanic/kleinpanicWeb","commit_stats":null,"previous_names":["kleinpanic/kleinpanicweb"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kleinpanic/kleinpanicWeb","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kleinpanic%2FkleinpanicWeb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kleinpanic%2FkleinpanicWeb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kleinpanic%2FkleinpanicWeb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kleinpanic%2FkleinpanicWeb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kleinpanic","download_url":"https://codeload.github.com/kleinpanic/kleinpanicWeb/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kleinpanic%2FkleinpanicWeb/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29454770,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T15:52:44.973Z","status":"ssl_error","status_checked_at":"2026-02-14T15:52:11.208Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":[],"created_at":"2025-02-09T20:29:16.082Z","updated_at":"2026-02-14T20:05:16.413Z","avatar_url":"https://github.com/kleinpanic.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kleinpanic website\n\n**Kleinpanic** is my personal website and blog where I share tech-related insights, projects, and music. This repository contains the open-sourced portion of the website, excluding sensitive files like `.env`.\n\n---\n\n## Features\n\n- **Blogging platform**: Built with Node.js and Express.\n- **Project sharing**: Utilizes GitHub for audio file storage.\n- **Custom routes**: Automatically serve different pages for requests from curl or a browser.\n- **Responsive Design**: Optimized for both desktop and mobile users.\n- **Email Sign-In**: Secure email-based login system.\n\n---\n\n## Getting Started\n\n### Prerequisites\n\nTo run this project locally, you'll need:\n\n- [Node.js](https://nodejs.org/en/) (v14 or later)\n- [npm](https://www.npmjs.com/) (comes with Node.js)\n\n### Installation\n\n1. **Clone the repository**:\n   ```bash\n    git clone https://github.com/kleinpanic/kleinpanicWeb.git \n    ```\n2. **Navigate to the project dir**\n    ```bash\n    cd kleinpanicWeb\n    ```\n3. **Install Dependencies**\n    ```bash\n    npm install \n    ```\n4. **create an .env file**\n\u003e this is for the contact section, and enables email notification features. This should be your email as this is designed to inform yourself about contact attemps.\n\u003e Be warned: if using a gmail, you will need to setup an app password and use that instead of your own private email password.\n    ```\n    EMAIL_ADDDRESS=\n    EMAIL_PASSWORD=\n    ```\n6. Run the development server\n    ```bash\n    npm run start\n    ```\n7. Acces the Website\n    ```bash\n    http://localhost:port\n    ```\n\n---\n\n## Folder Structure\n\n```plaintext\nkleinpanicWeb/\n│\n├── public/           # Static files (CSS, images, etc.)\n├── views/            # Frontend templates (ejs)\n├── routes/           # JS\n├── blog/             # Dir to contain blogs\n├── package.json      # NPM installs.\n├── server.js         # Entry point for the server\n├── .env              # Text file for containing secrets\n├── stderr.log        # Log file created for error logs\n├── package.json      # File for JS dependencies\n├── LICENSE           # MIT License\n└── README.md         # Project documentation\n\n```\n\n---\n\n## Contribution\n\nThis is my personal website, but if you want to view it, make your own with a similar view and functionality:\n\n    1. clone this repository \n       \n    2. View code\n\n    3. Do whatever \n\n\nor If you'd like to contribute:\n\n    1. Fork this repository.\n\n    2. Create a new branch (git checkout -b feature/feature-name).\n\n    3. Commit your changes (git commit -m 'Add some feature').\n\n    4. Push to the branch (git push origin feature/feature-name).\n\n    5. Open a Pull Request.\n\n---\n\n## License \n\nRead the LICENSE file. \n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkleinpanic%2Fkleinpanicweb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkleinpanic%2Fkleinpanicweb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkleinpanic%2Fkleinpanicweb/lists"}