{"id":24015045,"url":"https://github.com/1337programming/monoscope","last_synced_at":"2025-10-28T12:46:44.781Z","repository":{"id":66192077,"uuid":"41373580","full_name":"1337programming/monoscope","owner":"1337programming","description":"A Lightweight, easy-to-use shortcut framework for developing your front-end applications.","archived":false,"fork":false,"pushed_at":"2015-11-05T06:37:17.000Z","size":3477,"stargazers_count":3,"open_issues_count":11,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-06-04T23:34:46.944Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/1337programming.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-08-25T16:05:29.000Z","updated_at":"2015-11-05T19:32:16.000Z","dependencies_parsed_at":"2023-02-20T00:00:57.056Z","dependency_job_id":null,"html_url":"https://github.com/1337programming/monoscope","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/1337programming/monoscope","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1337programming%2Fmonoscope","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1337programming%2Fmonoscope/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1337programming%2Fmonoscope/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1337programming%2Fmonoscope/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/1337programming","download_url":"https://codeload.github.com/1337programming/monoscope/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1337programming%2Fmonoscope/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281441021,"owners_count":26501758,"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","status":"online","status_checked_at":"2025-10-28T02:00:06.022Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2025-01-08T07:38:42.192Z","updated_at":"2025-10-28T12:46:44.752Z","avatar_url":"https://github.com/1337programming.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Code Climate](https://codeclimate.com/github/1337programming/monoscope.svg)](https://codeclimate.com/github/1337programming/monoscope)\n[![GitHub version](https://badge.fury.io/gh/1337programming%2Fmonoscope.svg)](http://badge.fury.io/gh/1337programming/monoscope)\n[![Dependency Status](https://david-dm.org/1337-programming/monoscope.svg)](https://david-dm.org/1337programming/monoscope)\n[![Issue Stats](http://issuestats.com/github/1337programming/monoscope/badge/pr)](http://issuestats.com/github/1337programming/monoscope)\n[![Issue Stats](http://issuestats.com/github/1337programming/monoscope/badge/issue)](http://issuestats.com/github/1337programming/monoscope)\n#Monoscope\n\nCreate shortcuts in Node.js for while developing your modern web application locally.\n\n![alt tag](https://raw.githubusercontent.com/1337programming/monoscope/master/logo-banner.png)\n\n## Install \u0026 Run\n * Run `npm install`\n * Require the monoscope item in your automation development task.\n * Write `monoscope.run(shortcuts, options)` within your automation development task. Shortcuts and options are to be setup as defined below.\n \n## Shortcuts\nShortcuts should be an array containing objects, similar to the following:\n\n## Form Items\nForm is an optional property that will create a modal with the form items to ask prior to running the action. Form items include the following.\n\n### Text Field\nText fields should be in the form:\n\n```javascript\nvar text = {\n  label: 'Text Example', //Text to show\n  prop: 'testExampleVariableName'\n  type: 'text',\n  default: 'My Text'//or omitted\n};\n```\n\n### Checkbox\nCheckboxes should be in the form:\n\n```javascript\nvar checkbox = {\n  label: 'Checkbox', //Text to show\n  prop: 'checkboxVariableName',\n  type: 'checkbox',\n  default: true //or false\n};\n```\n### Select\nSelects should be in the form:\n\n```javascript\nvar select = {\n  label: 'Select', //Text to show\n  prop: 'selectVariableName',\n  type: 'select',\n  options: [\n    label: 'Example Option',\n    value: 'Example Option Value',\n    selected: 'selected' //Or omitted, only one\n  ]\n};\n```\n\n### Multiselect\nMultiselects should be in the form:\n\n```javascript\nvar multiselect = {\n label: 'Multiselect', //Text to show\n prop: 'multiselectVariableName',\n type: 'multiselect',\n options: [{\n   label: 'Example Option',\n   value: 'Example Option Value',\n   selected: 'selected' //Or omitted\n }]\n};\n```\n## Options\nOptions include:\n - title: The title of the Monoscope application. Default value of 'Monoscope'\n - appPort: The port of the local application being shown. Default value is 9000.\n \n## Cheers\n![PandaBear](https://s3.amazonaws.com/uploads.hipchat.com/69515/932142/DL97c184IFoG2su/PandaBear.png)\n\n \n# License\n  [MIT](/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F1337programming%2Fmonoscope","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F1337programming%2Fmonoscope","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F1337programming%2Fmonoscope/lists"}