{"id":20949254,"url":"https://github.com/openforge/juntoscope-deprecated","last_synced_at":"2025-12-28T16:38:20.737Z","repository":{"id":114113911,"uuid":"126488296","full_name":"openforge/juntoscope-deprecated","owner":"openforge","description":null,"archived":false,"fork":false,"pushed_at":"2018-03-23T15:06:14.000Z","size":153,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-19T22:25:38.077Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/openforge.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-03-23T13:22:25.000Z","updated_at":"2018-04-20T08:02:48.000Z","dependencies_parsed_at":"2023-06-13T12:15:22.357Z","dependency_job_id":null,"html_url":"https://github.com/openforge/juntoscope-deprecated","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openforge%2Fjuntoscope-deprecated","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openforge%2Fjuntoscope-deprecated/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openforge%2Fjuntoscope-deprecated/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openforge%2Fjuntoscope-deprecated/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openforge","download_url":"https://codeload.github.com/openforge/juntoscope-deprecated/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243345615,"owners_count":20275872,"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-11-19T00:34:35.787Z","updated_at":"2025-12-28T16:38:15.699Z","avatar_url":"https://github.com/openforge.png","language":"TypeScript","readme":"# juntoscope\nA project build with Stencil.js!\n\n## Getting Started\n\nClone this repository:\n\n```bash\ngit clone https://github.com/openforge/juntoscope.git\ncd juntoscope\n```\n\nBe sure you are using version 8 of node\nIf you have node version manager installed, run this command:\n```\nnvm use 8 \n```\n\nand run:\n\n```bash\nnpm install\nnpm start\n```\n\nTo view the build, start an HTTP server inside of the `/www` directory.\n\nTo watch for file changes during development, run:\n\n```bash\nnpm run dev\n```\n\nTo build the app for production, run:\n\n```bash\nnpm run build\n```\n\nTo run the unit tests once, run:\n\n```\nnpm test\n```\n\nTo run the unit tests and watch for file changes during development, run:\n\n```\nnpm run test.watch\n```\n\n## Development\n\n### File Structure\n**UI** components should reside in the `src/components` folder.\n\nWhile **Page** components should reside in the `src/pages` folder. A page component is responsible for the grouping and layout of various different components into a page. Also responsible for any logic around the communication between the different components, the rest of the application (i.e. routing), and with the external world.\n\n### Tools\n\n#### Linting \u0026 Code Formatting:\n[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)\n\nThis project uses:\n- [prettier](http://prettier.io/) for code formatting.\n- [tslint](https://palantir.github.io/tslint/) for linting with rules from:\n  - [tslint-react](https://github.com/palantir/tslint-react)\n  - [tslint-config-airbnb](https://github.com/progre/tslint-config-airbnb)\n  - [tslint-config-prettier](https://github.com/alexjoverm/tslint-config-prettier)\n\n`package.json` defines an npm script for linting. To lint the project at any time, simply run the script with\n```\n$ npm run lint\n```\n\n#### Versioning \u0026 Changelog\nWe utilize [Conventional Changelog](https://github.com/conventional-changelog/conventional-changelog) to generate a changelog from git metadata.\n\nThe following tools are used to achieve this purpose:\n- [commitizen](https://github.com/commitizen/cz-cli)\n- [cz-conventional-changelog](https://www.npmjs.com/package/cz-conventional-changelog)\n- [conventional-changelog-cli](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-cli)\n\nWith the current configuration, after a developer stages their changes for a commit. They can use the following npm script to walk them through committing their changes.\n\n```\nnpm run cz\n```\n\nRead more about the commit guidelines [here](http://conventionalcommits.org/)\n\nAfter all changes have been committed, a release and a changelog can be triggered by using the npm [version](https://docs.npmjs.com/cli/version) command. And the current configuration takes care of generating the changelog file based on git metadata.\n\n#### Automation \u0026 Hooks\nThe project uses [husky](https://github.com/typicode/husky) for git hook integations. And uses [lint-staged](https://github.com/okonet/lint-staged) to run automatically run linters on staged files. And [commitlint](https://github.com/marionebl/commitlint) to ensure commits messages follow the conventions.\n\nFor every commit, it will ensure files are linted and that the code is formatted to `prettier`'s configuration. It will also confirm that the proposed commit message matches the defined guidelines. If any error occurs in the process, it will **stop and prevent** the commit until the issues are fixed.\n\nIf a developer went through providing all the information during a `npm run cz` only to find that there were issues with their commit. They may fix them and instruct commitizen to try the commit again with `npm run cz -- --retry`\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenforge%2Fjuntoscope-deprecated","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenforge%2Fjuntoscope-deprecated","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenforge%2Fjuntoscope-deprecated/lists"}