{"id":19973775,"url":"https://github.com/dojo/cli-create-app","last_synced_at":"2025-05-04T02:32:06.592Z","repository":{"id":11105007,"uuid":"68368788","full_name":"dojo/cli-create-app","owner":"dojo","description":"🚀 Dojo - cli command for creating app boilerplates.","archived":false,"fork":false,"pushed_at":"2023-04-24T23:26:45.000Z","size":1558,"stargazers_count":12,"open_issues_count":5,"forks_count":20,"subscribers_count":15,"default_branch":"master","last_synced_at":"2025-04-16T22:04:48.933Z","etag":null,"topics":["cli","command","create-app","dojo"],"latest_commit_sha":null,"homepage":"http://dojo.io","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dojo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","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":"2016-09-16T09:45:14.000Z","updated_at":"2023-07-23T06:03:39.000Z","dependencies_parsed_at":"2024-06-21T14:04:29.847Z","dependency_job_id":"5c6a3c37-9de3-4de8-9b1f-db81ce54682d","html_url":"https://github.com/dojo/cli-create-app","commit_stats":{"total_commits":226,"total_committers":22,"mean_commits":"10.272727272727273","dds":0.5398230088495575,"last_synced_commit":"c05b1d9eefa26f7f4a228b6c4ddc99bf914cfa86"},"previous_names":[],"tags_count":48,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dojo%2Fcli-create-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dojo%2Fcli-create-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dojo%2Fcli-create-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dojo%2Fcli-create-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dojo","download_url":"https://codeload.github.com/dojo/cli-create-app/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252278992,"owners_count":21722804,"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":["cli","command","create-app","dojo"],"created_at":"2024-11-13T03:12:49.434Z","updated_at":"2025-05-04T02:32:05.958Z","avatar_url":"https://github.com/dojo.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cli-create-app\n\n[![Build Status](https://travis-ci.org/dojo/cli-create-app.svg?branch=master)](https://travis-ci.org/dojo/cli-create-app)\n[![Build status](https://ci.appveyor.com/api/projects/status/ap88vuv8xsuelowm/branch/master?svg=true)](https://ci.appveyor.com/project/Dojo/cli-create-app/branch/master)\n[![codecov](https://codecov.io/gh/dojo/cli-create-app/branch/master/graph/badge.svg)](https://codecov.io/gh/dojo/cli-create-app)\n[![npm version](https://badge.fury.io/js/%40dojo%2Fcli-create-app.svg)](https://badge.fury.io/js/%40dojo%2Fcli-create-app)\n\nThe `create app` command for [`@dojo/cli`](https://github.com/dojo/cli).\n\n- [Usage](#usage)\n- [Features](#features)\n- [How do I contribute?](#how-do-i-contribute)\n  - [Code Style](#code-style)\n  - [Installation](#installation)\n  - [Testing](#testing)\n- [Licensing information](#licensing-information)\n\n## Usage\n\nTo use `@dojo/cli-create-app`, install the project globally along side `dojo cli`:\n\n```bash\nnpm install -g @dojo/cli-create-app\n```\n\nRun using:\n\n```bash\ndojo create [app] --name \u003cappName\u003e\n```\n\n## Features\n\n`@dojo/cli-create-app` generates a skeleton project structure for Dojo 2 into a directory using the the `--name` argument provided.\n\nAll the dependencies are pre-installed using `npm` including two `@dojo/cli` commands; [`@dojo/cli-build-app`](https://github.com/dojo/cli-build-app) and [`@dojo/cli-test-intern`](https://github.com/dojo/cli-test-intern).\n\nTo start using the application, `cd` into the directory and run `dojo build --mode dev --watch memory --serve` which will build and serve the application on port `9999`. Open [http://localhost:9999](http://localhost:9999) in a modern browser (Chrome, FF, Safari, IE11 or Edge) to run the application.\n\nTo build the tests, run `dojo build --mode test`. This will output to `output/test`.\n\nWhen ready to create a production build run `dojo build`, the output will be available in the `output/dist` directory.\n\n## How do I contribute?\n\nWe appreciate your interest!  Please see the [Dojo 2 Meta Repository](https://github.com/dojo/meta#readme) for the\nContributing Guidelines.\n\n### Code Style\n\nThis repository uses [`prettier`](https://prettier.io/) for code styling rules and formatting. A pre-commit hook is installed automatically and configured to run `prettier` against all staged files as per the configuration in the projects `package.json`.\n\nAn additional npm script to run `prettier` (with write set to `true`) against all `src` and `test` project files is available by running:\n\n```bash\nnpm run prettier\n```\n\n### Installation\n\nTo start working with this package, clone the repository and run `npm install`.\n\nIn order to build the project run `grunt dev` or `grunt dist`.\n\n### Testing\n\nTest cases MUST be written using [Intern](https://theintern.github.io) using the Object test interface and Assert assertion interface.\n\n90% branch coverage MUST be provided for all code submitted to this repository, as reported by istanbul’s combined coverage results for all supported platforms.\n\nTo test locally run:\n\n`grunt test`\n\n## Licensing information\n\n© 2018 [JS Foundation](https://js.foundation/). [New BSD](http://opensource.org/licenses/BSD-3-Clause) license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdojo%2Fcli-create-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdojo%2Fcli-create-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdojo%2Fcli-create-app/lists"}