{"id":14981302,"url":"https://github.com/epam/miew","last_synced_at":"2025-05-15T14:06:02.507Z","repository":{"id":41372396,"uuid":"101226228","full_name":"epam/miew","owner":"epam","description":"3D Molecular Viewer","archived":false,"fork":false,"pushed_at":"2025-02-15T08:43:17.000Z","size":78941,"stargazers_count":146,"open_issues_count":8,"forks_count":45,"subscribers_count":18,"default_branch":"main","last_synced_at":"2025-05-08T07:39:10.974Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://miew.app","language":"JavaScript","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/epam.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2017-08-23T21:23:57.000Z","updated_at":"2025-04-28T03:30:39.000Z","dependencies_parsed_at":"2023-09-27T18:54:37.157Z","dependency_job_id":"c1511ea2-f773-4cdc-9d6a-0261b7a21f66","html_url":"https://github.com/epam/miew","commit_stats":{"total_commits":923,"total_committers":31,"mean_commits":"29.774193548387096","dds":0.6543878656554714,"last_synced_commit":"74f0df8cb832bda805c3079e7f67717e564c447a"},"previous_names":[],"tags_count":36,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/epam%2Fmiew","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/epam%2Fmiew/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/epam%2Fmiew/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/epam%2Fmiew/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/epam","download_url":"https://codeload.github.com/epam/miew/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254355334,"owners_count":22057354,"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":[],"created_at":"2024-09-24T14:03:17.595Z","updated_at":"2025-05-15T14:05:57.498Z","avatar_url":"https://github.com/epam.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Miew – 3D Molecular Viewer\n\n[![Build Status](https://img.shields.io/github/actions/workflow/status/epam/miew/ci.yml?label=linux)](https://github.com/epam/miew/actions?query=branch%3Amain)\n[![AppVeyor Build Status](https://img.shields.io/appveyor/ci/paulsmirnov/miew/main?label=windows)](https://ci.appveyor.com/project/paulsmirnov/miew)\n[![Version](https://img.shields.io/npm/v/miew)](https://www.npmjs.com/package/miew?activeTab=versions)\n[![Downloads](https://img.shields.io/npm/dm/miew)](https://www.npmjs.com/package/miew?activeTab=versions)\n[![License](https://img.shields.io/badge/license-MIT-green)](./LICENSE.md)\n\nMiew is a high performance web tool for advanced visualization and manipulation\nof molecular structures. It provides a full-featured set of tools for 3D visualization and editing\nof small molecules as well as large molecular complexes, including means to view, analyze,\nand modify the 3D structure of a molecule.\n\n![Screenshot](README.png)\n\nIt works as a standalone web application or integrates as a component into your web pages.\nWe plan to support the [latest versions](https://browsehappy.com/)\nof WebGL-enabled desktop (Chrome, Firefox, Safari, Edge) and mobile (iOS, Android) browsers.\n\n## Project Structure\n\n- [miew] - the core JavaScript library including docs, examples, and the demo application,\n- [miew-react] - a simple React.js wrapper component,\n- [miew-app] - a new demo application (work in progress).\n\n[miew]: packages/miew#readme\n[miew-react]: packages/miew-react#readme\n[miew-app]: packages/miew-app#readme\n\n## Installation and Usage\n\nThe demo application is available at \u003chttps://miew.app\u003e and \u003chttps://miew.opensource.epam.com\u003e.\n\nThe library is published as an npm package. The easiest way to start using the viewer\nis to reference a CDN version:\n\n```html\n\u003c!doctype html\u003e\n\u003chtml lang=\"en\"\u003e\n  \u003chead\u003e\n    \u003cmeta charset=\"UTF-8\" /\u003e\n    \u003cscript src=\"https://unpkg.com/lodash@^4.17.21/lodash.js\"\u003e\u003c/script\u003e\n    \u003cscript src=\"https://unpkg.com/three@0.153.0/build/three.min.js\"\u003e\u003c/script\u003e\n    \u003cscript src=\"https://unpkg.com/miew@0.11.0/dist/Miew.min.js\"\u003e\u003c/script\u003e\n    \u003clink rel=\"stylesheet\" href=\"https://unpkg.com/miew@0.11.0/dist/Miew.min.css\" /\u003e\n  \u003c/head\u003e\n  \u003cbody\u003e\n    \u003cdiv class=\"miew-container\" style=\"width:640px; height:480px\"\u003e\u003c/div\u003e\n\n    \u003cscript\u003e\n      (function () {\n        var viewer = new Miew({ load: '1CRN' });\n        if (viewer.init()) {\n          viewer.run();\n        }\n      })();\n    \u003c/script\u003e\n  \u003c/body\u003e\n\u003c/html\u003e\n```\n\nFor more details please refer to the corresponding README files ([miew] and [miew-react]).\n\n## Contribution\n\nPlease read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct, and the process\nfor submitting pull requests.\n\n## License\n\n[MIT](LICENSE.md)\n\nCopyright (c) 2015–2024 [EPAM Systems, Inc.](https://www.epam.com/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fepam%2Fmiew","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fepam%2Fmiew","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fepam%2Fmiew/lists"}