{"id":24086069,"url":"https://github.com/sha-env/Vue-Calculator","last_synced_at":"2025-10-02T21:31:30.523Z","repository":{"id":269390784,"uuid":"907262573","full_name":"guanshiyin28/Vue-Calculator","owner":"guanshiyin28","description":"Simple Project Vue Calculator","archived":false,"fork":false,"pushed_at":"2025-01-20T12:20:26.000Z","size":260,"stargazers_count":7,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-20T13:26:36.418Z","etag":null,"topics":["calculator","calculator-javascript","vue","vue-cli","vuejs"],"latest_commit_sha":null,"homepage":"https://vue-calculator.guanshiyinnn.com/","language":"Vue","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/guanshiyin28.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["guanshiyin28"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"thanks_dev":null,"custom":null}},"created_at":"2024-12-23T07:36:25.000Z","updated_at":"2025-01-20T12:20:27.000Z","dependencies_parsed_at":null,"dependency_job_id":"4eea4bcb-c9d1-4402-956b-42932b6f11d9","html_url":"https://github.com/guanshiyin28/Vue-Calculator","commit_stats":null,"previous_names":["guanshiyin28/vue-calculator"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guanshiyin28%2FVue-Calculator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guanshiyin28%2FVue-Calculator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guanshiyin28%2FVue-Calculator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guanshiyin28%2FVue-Calculator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/guanshiyin28","download_url":"https://codeload.github.com/guanshiyin28/Vue-Calculator/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235043924,"owners_count":18927010,"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":["calculator","calculator-javascript","vue","vue-cli","vuejs"],"created_at":"2025-01-10T01:56:14.465Z","updated_at":"2025-10-02T21:31:30.518Z","avatar_url":"https://github.com/guanshiyin28.png","language":"Vue","funding_links":["https://github.com/sponsors/guanshiyin28"],"categories":[],"sub_categories":[],"readme":"# Vue Calculator\n\nThis repository serves as a foundation for building a user-friendly calculator application utilizing the Vue.js framework for efficient and reactive front-end development.\n\n\u003chr\u003e\u003cbr\u003e\n\n## Purpose of This Repository\n\nThis repository contains the source code for a basic calculator application built with Vue.js. The project demonstrates fundamental front-end development principles and provides a solid foundation for further exploration of Vue.js capabilities.\n\n\u003chr\u003e\u003cbr\u003e\n\n## Demo\n\nCheck out the live demo of the Vue Calculator [here](https://vue-calculator.guanshiyinnn.com/).\n\n### Program Function Demonstration\n\nHere is a demonstration of the basic arithmetic operations provided by the calculator:\n\n```javascript\n// filepath: /home/guan/Documents/Code/Vue-Calculator/src/components/Calculator.vue\nmethods: {\n  add(a, b) {\n    return a + b;\n  },\n  subtract(a, b) {\n    return a - b;\n  },\n  multiply(a, b) {\n    return a * b;\n  },\n  divide(a, b) {\n    if (b === 0) {\n      return 'Error: Division by zero';\n    }\n    return a / b;\n  }\n}\n```\n\n\u003chr\u003e\u003cbr\u003e\n\n## Features\n\n- Basic arithmetic operations (addition, subtraction, multiplication, division)\n- Responsive design\n- Clear and user-friendly interface\n- Real-time calculation updates\n\n\u003chr\u003e\u003cbr\u003e\n\n## Technologies Used\n\n- Vue.js\n- HTML5\n- CSS3\n- JavaScript\n\n\u003chr\u003e\u003cbr\u003e\n\n## Project Setup\n\n1. **Install Node.js**\n2. **Clone this repository**\n\n```bash\ngit clone https://github.com/n4vrl0s3/Vue-Calculator.git\n```\n\n3. **Direct to directory**\n\n```bash\ncd Vue-Calculator\n```\n\n4. **Install npm**\n\n```bash\nnpm install\n```\n\n\u003chr\u003e\u003cbr\u003e\n\n## Steps to Run\n\n1. **Compiles and hot-reloads for development**\n\n```bash\nnpm run serve\n```\n\n2. **Compiles and minifies for production**\n\n```bash\nnpm run build\n```\n\n3. **Lints and fixes files**\n\n```bash\nnpm run lint\n```\n\n\u003chr\u003e\u003cbr\u003e\n\n## License\n\nThis project is licensed under the Apache-2.0 License. See the [LICENSE](LICENSE) file for details.\n\n\u003chr\u003e\u003cbr\u003e\n\n\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://www.x.com/n4vrl0s3/\"\u003e\n    \u003cimg src=\"https://capsule-render.vercel.app/api?type=waving\u0026height=200\u0026color=100:49108B,20:F3F8FF\u0026section=footer\u0026reversal=false\u0026textBg=false\u0026fontAlignY=50\u0026descAlign=48\u0026descAlignY=59\"/\u003e\n  \u003c/a\u003e\n\u003c/div\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsha-env%2FVue-Calculator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsha-env%2FVue-Calculator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsha-env%2FVue-Calculator/lists"}