{"id":15534743,"url":"https://github.com/ssekpius/microverse-html-basic-javascript-capstone-","last_synced_at":"2026-02-25T06:14:19.175Z","repository":{"id":62144912,"uuid":"557097411","full_name":"SSEKPIUS/Microverse-HTML-basic-JavaScript-Capstone-","owner":"SSEKPIUS","description":"In this capstone project am going to build is based on an online website for a conference. We were provided with some design guidelines for us to create the website, (ES6 ,HTML,CSS)","archived":false,"fork":false,"pushed_at":"2023-04-07T20:43:57.000Z","size":2802,"stargazers_count":1,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-27T20:37:14.137Z","etag":null,"topics":["css","eslint","html","javascript","stylelint"],"latest_commit_sha":null,"homepage":"","language":"SCSS","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/SSEKPIUS.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":"2022-10-25T04:19:03.000Z","updated_at":"2022-11-22T07:13:16.000Z","dependencies_parsed_at":"2025-02-13T02:33:21.686Z","dependency_job_id":"5666e119-523b-4d1c-917d-64200ffa3f42","html_url":"https://github.com/SSEKPIUS/Microverse-HTML-basic-JavaScript-Capstone-","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/SSEKPIUS/Microverse-HTML-basic-JavaScript-Capstone-","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SSEKPIUS%2FMicroverse-HTML-basic-JavaScript-Capstone-","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SSEKPIUS%2FMicroverse-HTML-basic-JavaScript-Capstone-/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SSEKPIUS%2FMicroverse-HTML-basic-JavaScript-Capstone-/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SSEKPIUS%2FMicroverse-HTML-basic-JavaScript-Capstone-/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SSEKPIUS","download_url":"https://codeload.github.com/SSEKPIUS/Microverse-HTML-basic-JavaScript-Capstone-/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SSEKPIUS%2FMicroverse-HTML-basic-JavaScript-Capstone-/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29812173,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T05:36:42.804Z","status":"ssl_error","status_checked_at":"2026-02-25T05:36:31.934Z","response_time":61,"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":["css","eslint","html","javascript","stylelint"],"created_at":"2024-10-02T11:43:20.973Z","updated_at":"2026-02-25T06:14:19.140Z","avatar_url":"https://github.com/SSEKPIUS.png","language":"SCSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# HTML-basic-JavaScript-Capstone-\nCapstone project\n\n## Built With\n\n- CSS, HTML\n- Frameworks-none\n- Technologies use- Git, npm\n\n## Live Demo (if available)\n\n[Live Demo Link](https://#)\n\n\n## About\n\nIn this capstone project am going to build is based on an online website for a conference. We were provided with some design guidelines for us to create the website, but we must personalize the content, i.e., instead of a conference we could build a website for a concert or for a web development course. It's very important the we personalize our project so that we have something unique in our portfolio to share with potential employers during job searching.\n\n\nTo get a local copy up and running follow these simple example steps.\n\n### Prerequisites\nSet-up GitHub Actions\n1. create a .github/workflows folder and add a copy of .github/workflows/linters.yml (https://github.com/microverseinc/linters-config/blob/master/html-css-js/.github/workflows/linters.yml) to that folder.\n\n### Setup \u0026 Install\nSet-up linters in your local env\n#### Webhint\n1. you need to initialize npm to create package.json file.  npm init -y\n2. Run npm install --save-dev hint@7.x\n3. Copy .hintrc (https://github.com/microverseinc/linters-config/blob/master/html-css/.hintrc) to the root directory of your project.\n\n#### Stylelint\nA mighty, modern linter that helps you avoid errors and enforce conventions in your styles.\n1. Run npm install --save-dev stylelint@13.x stylelint-scss@3.x stylelint-config-standard@21.x stylelint-csstree-validator@1.x\n2. Copy .stylelintrc.json (https://github.com/microverseinc/linters-config/blob/master/html-css/.stylelintrc.json) to the root directory of your project.\n\n#### ESLint\n1. Run npm install --save-dev eslint@7.x eslint-config-airbnb-base@14.x eslint-plugin-import@2.x babel-eslint@10.x\n2. Copy .eslintrc.json(https://github.com/microverseinc/linters-config/blob/master/html-css-js/.eslintrc.json) to the root directory of your project.\n3. Run npx eslint . on the root of your directory of your project to Fix linter errors.\n\n### Run tests\n\n1. Run npx hint .  to Fix Web validation errors.\n2. Run npx stylelint \"**/*.{css,scss}\" on the root of your directory of your project to Fix linter errors.\n3. Run  npx eslint . for JS linters\n\n\n## Authors\n1. Ssekweyama Pius\n\n- GitHub: [@githubhandle](https://github.com/SSEKPIUS)\n- Twitter: [@twitterhandle](https://twitter.com/SSEK_PIUS)\n- LinkedIn: [LinkedIn](https://linkedin.com/in/pius-ssekweyama-23665794)\n\n# Original design idea by Cindy Shin in Behance. (https://www.behance.net/adagio07)\n\n## 🤝 Contributing\nContributions, issues, and feature requests are welcome!\nFeel free to check the [issues page](../../issues/).\n\n## Show your support\nGive a ⭐️ if you like this project!\n\n## Acknowledgments\n- Big thanks to Microverse and all the student teams that contributed in any form\n\n## 📝 License\nThis project is [MIT](./LICENSE) licensed.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fssekpius%2Fmicroverse-html-basic-javascript-capstone-","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fssekpius%2Fmicroverse-html-basic-javascript-capstone-","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fssekpius%2Fmicroverse-html-basic-javascript-capstone-/lists"}