{"id":15893423,"url":"https://github.com/multimeric/vue-cwl","last_synced_at":"2026-03-08T14:40:16.324Z","repository":{"id":44039673,"uuid":"121595617","full_name":"multimeric/vue-cwl","owner":"multimeric","description":"Visualizer of CWL (Common Workflow Language) workflows for Vue","archived":false,"fork":false,"pushed_at":"2022-12-07T17:47:43.000Z","size":1151,"stargazers_count":30,"open_issues_count":19,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-21T05:23:38.594Z","etag":null,"topics":["bioinformatics"],"latest_commit_sha":null,"homepage":"https://multimeric.github.io/vue-cwl/","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/multimeric.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}},"created_at":"2018-02-15T05:47:53.000Z","updated_at":"2024-05-21T15:09:10.000Z","dependencies_parsed_at":"2023-01-23T18:45:33.671Z","dependency_job_id":null,"html_url":"https://github.com/multimeric/vue-cwl","commit_stats":null,"previous_names":["tmiguelt/vue-cwl"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multimeric%2Fvue-cwl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multimeric%2Fvue-cwl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multimeric%2Fvue-cwl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/multimeric%2Fvue-cwl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/multimeric","download_url":"https://codeload.github.com/multimeric/vue-cwl/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246863842,"owners_count":20846321,"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":["bioinformatics"],"created_at":"2024-10-06T08:10:30.611Z","updated_at":"2026-03-08T14:40:16.281Z","avatar_url":"https://github.com/multimeric.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vue CWL\n\n[![DOI](https://zenodo.org/badge/121595617.svg)](https://zenodo.org/badge/latestdoi/121595617)\n\nVue CWL provides a Vue component for the visualization of CWL (Common Workflow Language) workflows.\n\n## Motivation\n\nVue CWL uses the fantastic [cwl-svg](https://github.com/rabix/cwl-svg) library behind the scenes, which you can also use directly.\nHowever, you might want to use Vue CWL because:\n\n* You can use it directly in your HTML application, without setting up a compiler. You don't even need to use npm!\n* If you're using Vue elsewhere in your application, Vue CWL will be much easier to integrate.\n\n## Installation (if using npm)\nInstall from npm:\n\n```bash\nnpm install vue-cwl --save-dev\n```\n\nOr, if you want the latest development version, install from github:\n\n```bash\nnpm install git+https://git@github.com/TMiguelT/vue-cwl.git --save-dev\n```\n\n## Integration\nVue CWL is exported as a UMD module, which means that you can either import it with a module loader,\nor import it directly in the browser.\n\nIf using webpack and npm:\n\n```javascript\nimport Vue from 'vue';\nimport Cwl from 'cwl-svg';\n\nnew Vue({\n    el: '#vue',\n    components: {\n        cwl: Cwl\n    }\n})\n```\n\nYou can now use the `\u003ccwl\u003e` tag in your template:\n```html\n\u003ccwl\n    cwl-url=\"https://unpkg.com/cwl-svg@2.1.5/cwl-samples/fastqc.json\"\n\u003e\u003c/cwl\u003e\n```\n\nIf using no bundler, you can include Vue and Vue CWL using something like `unpkg`:\n\n```html\n\u003cdiv id=\"vue\" style=\"width: 800px; height: 800px\"\u003e\n    \u003ccwl\n            cwl-url=\"https://unpkg.com/cwl-svg@2.1.5/cwl-samples/fastqc.json\"\n    \u003e\u003c/cwl\u003e\n\u003c/div\u003e\n\u003cscript src=\"https://cdnjs.cloudflare.com/ajax/libs/vue/2.6.10/vue.min.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"https://unpkg.com/vue-cwl/dist/index.js\"\u003e\u003c/script\u003e\n\u003cscript\u003e\n    new Vue({\n        el: '#vue',\n        components: {\n            cwl: vueCwl.default\n        }\n    });\n\u003c/script\u003e\n```\n\n## Usage\n\nVue CWL components currently accept 4 props:\n\n* `cwl`:\n    * type: Object\n    * default: null\n    * description: The JSON object representing the CWL workflow to render\n* `cwlUrl`:\n    * type: String\n    * default: null\n    * description: A URL to request for the initial CWL object from. Used as an alternative to the \"cwl\" prop`\n* `editingEnabled`:\n    * type: Boolean\n    * default: false\n    * description: True if the workflow is editable\n* `plugins`:\n    * type: Array\n    * default: No plugins\n    * description: A list of CWL plugins to use in the CWL rendering\n\n## Demo\nAn online demo of Vue CWL is available at \u003chttps://multimeric.github.io/vue-cwl/\u003e\n\nIf you wish to build the demo yourself:\n* Clone the repo\n* Run `npm run demo`\n* Then browse to \u003chttp://localhost:8080/\u003e in your web browser (or whatever URL the command\nprints out)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmultimeric%2Fvue-cwl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmultimeric%2Fvue-cwl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmultimeric%2Fvue-cwl/lists"}