{"id":22883335,"url":"https://github.com/nocpiun/calcium","last_synced_at":"2025-04-09T12:04:10.766Z","repository":{"id":85668818,"uuid":"576677555","full_name":"nocpiun/calcium","owner":"nocpiun","description":"A web-based calculator app","archived":false,"fork":false,"pushed_at":"2025-01-01T04:25:07.000Z","size":7660,"stargazers_count":47,"open_issues_count":0,"forks_count":44,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-02T11:01:43.729Z","etag":null,"topics":["calculator","frontend","javascript","react","reactjs","typescript","unit-conversion","web-based"],"latest_commit_sha":null,"homepage":"https://calcium.js.org","language":"TypeScript","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/nocpiun.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"custom":["https://nocp.space/donate"]}},"created_at":"2022-12-10T16:12:29.000Z","updated_at":"2025-03-09T13:46:25.000Z","dependencies_parsed_at":"2023-09-29T07:10:51.730Z","dependency_job_id":"8b5939e3-baa0-4dd8-9de9-524694cf4897","html_url":"https://github.com/nocpiun/calcium","commit_stats":null,"previous_names":[],"tags_count":22,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nocpiun%2Fcalcium","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nocpiun%2Fcalcium/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nocpiun%2Fcalcium/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nocpiun%2Fcalcium/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nocpiun","download_url":"https://codeload.github.com/nocpiun/calcium/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248036064,"owners_count":21037092,"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","frontend","javascript","react","reactjs","typescript","unit-conversion","web-based"],"created_at":"2024-12-13T18:35:26.560Z","updated_at":"2025-04-09T12:04:10.747Z","avatar_url":"https://github.com/nocpiun.png","language":"TypeScript","readme":"\u003cdiv align=\"center\"\u003e\n\n\u003cimg src=\"./public/icon.png\" style=\"width:82px;\"/\u003e\n\n# Calcium Calculator\n\n[![Author](https://img.shields.io/badge/Author-NriotHrreion-red.svg \"Author\")](https://github.com/NriotHrreion)\n[![LICENSE](https://img.shields.io/badge/License-MIT-green.svg \"LICENSE\")](./LICENSE)\n[![Stars](https://img.shields.io/github/stars/nocpiun/calcium.svg?label=Stars\u0026style=flat)](https://github.com/nocpiun/calcium/stargazers)\n[![Github Workflow Status](https://img.shields.io/github/actions/workflow/status/nocpiun/calcium/test.yml)](https://github.com/nocpiun/calcium/actions/workflows/test.yml)\n[![Netlify Status](https://api.netlify.com/api/v1/badges/41b2bd01-9404-4d8b-99c4-7dea623f720a/deploy-status)](https://app.netlify.com/sites/courageous-bublanina-6857c1/deploys)\n\n\u003e A web-based calculator app\n\n\u003c/div\u003e\n\n![Poster](./images/poster.png)\n\n## Description\n\nCalcium is a web-based calculator written in React + Typescript.\n\nIf you encountered any problems or have any ideas, feel free to open an issue to let me know.\n\n_[Here is the Wiki](https://github.com/nocpiun/calcium/wiki)_\n\n_[Here is the Manual](https://github.com/nocpiun/calcium/wiki/Manual)_\n\n#### Why is its name Calcium?\n\n```\nCalculator -\u003e calc -\u003e Ca (Chemical Element) -\u003e Calcium\n```\n\n#### What features does it support?\n\n- Basic calculating\n- Sigma \u0026 Integral \u0026 Product calculating\n- Variable creating and storing\n- Function Images Graphing\n- Base conversion\n- Unit conversion\n- Relationship calculating (Thanks to [relationship.js](https://github.com/mumuy/relationship))\n- Currency exchanging\n- History recording\n\n## Deploy \u0026 Use\n\n**It is recommended to access Calcium via [calcium.js.org](https://calcium.js.org). However, if you prefer to deploy it locally or want to contribute to the source code, please proceed to read the following instructions.**\n\n#### Docker\n\nTo begin with, you need to make sure you have had [Docker](https://docker.com) installed on your server (or computer).\n\n1. **Pull docker repository**\n\n```bash\ndocker pull noahhrreion/calcium:main\n```\n\n2. **Create container**\n\n```bash\ndocker run -p 3000:3000 noahhrreion/calcium:main\n```\n\n3. **Enter `http://localhost:3000`, and you can start using Calcium.**\n\n#### Launch directly\n\nTo begin with, you need to make sure you have had [Git](https://git-scm.com/downloads) \u0026 [Node.js](https://nodejs.org/en/download) installed on your server (or computer).\n\n1. **Clone Git repo**\n\n```bash\ngit clone https://github.com/nocpiun/calcium.git\n```\n\n2. **Install dependencies**\n\n```bash\nnpm i\n```\n\nIf it throws error at this step, try:\n\n```bash\nnpm i --force\n```\n\n3. **Launch Calcium**\n\n```bash\nnpm run start\n```\n\n4. **Enter `http://localhost:3000`, and you can start using Calcium.**\n\nIf you want to make contribution to this repo, just simply begin by modifying the code and starting debugging!\n\n## Contributing\n\nContributions to Calcium are welcomed. You can fork this project and start your contributing. If you don't know how to do, please follow the instruction [Creating a Pull Request from a Fork](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request-from-a-fork). And I'll review the Pull Requests in my spare time.\n\nAlso, you're supposed to run tests before submitting a commit to your PR.\n\n```bash\nnpm run test\n```\n\n## Scripts\n\nAn explanation of the `package.json` scripts.\n\n- **`start`** Launch the app\n- **`build`** Create a production build\n- **`test`** Run tests\n\n## LICENSE\n\n[MIT](./LICENSE)\n","funding_links":["https://nocp.space/donate"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnocpiun%2Fcalcium","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnocpiun%2Fcalcium","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnocpiun%2Fcalcium/lists"}