Re: [PR] Extract project structure into its own file [cordova-docs]
erisu commented on code in PR #977: URL: https://github.com/apache/cordova-docs/pull/977#discussion_r1834855266 ## www/docs/en/dev/guide/overview/project-structure.md: ## @@ -0,0 +1,109 @@ +--- +license: > +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. + +title: Project Structure of a Cordova Project +toc_title: Project Structure +description: +--- + +# Project Structure + +## CLI's Default Directory Structure + +A project created with Cordova CLI comes with the follow directory structure by default: + +```text +myapp/ +├── config.xml +├── node_modules/ +├── package.json +├── platforms/ +├── plugins/ +└── www +``` + +### `package.json` + +A manifest declaring what JavaScript package dependencies are used by your project, including Cordova, the added platforms, and any added plugins. This is also where plugin variable values are stored. + +Your project might already have a `package.json` file with its own dependencies, or one generated from a framework. Cordova will simply add what it needs to the `package.json` file without interfering with other tools or dependencies. + +### `config.xml` + +Contains the preferences and configuration options for your Cordova application and allows you to customize the behavior of your project. + +See also [`config.xml` reference documentation][config.xml ref]. + +### `www/` + +Contains the project's web artifacts, such as HTML, CSS, JavaScript, and other resource asset files. + +As a Cordova application developer, most of your code and assets will go here. They will be copied on a `cordova prepare` to each platform's `www` directory. The `www` source directory is reproduced within each platform's subdirectory, appearing for example in `platforms/ios/www` or `platforms/android/assets/www`. Because the CLI constantly copies over files from the source `www` folder, you should only edit these files and not the ones located under the platforms subdirectories. + +If you use a JavaScript build tool, you should set it to output your production distribution files to the `www` folder. +If you are developing code in the `www` folder directly, you should add this folder to your version control system. + +### `node_modules/` + +This directory contains all of the JavaScript dependency packages from the npm JavaScript registry for Cordova and its tools, along with any dependencies of your project (as specified in `package.json`). + +When adding a Cordova platform or plugin with the `cordova platform add` and `cordova plugin add` command, these platforms and plugins are fetched from the npmjs registry and downloaded into the `node_modules/` directory. + +Cordova will then copy the necessary Cordova platform and plugin source code from the `node_modules` directory and place them into the appropriate location for Cordova to function. + +It also contain scripts that is used during the `cordova prepare` and `cordova build` for each platform. + +The `node_modules` directory is the original unedited source of truth and nothing should be edited in this directory. Additionally, this directory should not be checked into any version control system. + +For more details, see [npmjs folders documentation](https://docs.npmjs.com/cli/v7/configuring-npm/folders#node-modules). + +### `platforms/` + +Contains all the source code and build scripts for the platforms that you add to your project. + +> **WARNING:** When using the CLI to build your application, you should not edit any files in the /platforms/ directory unless you know what you are doing, or if documentation specifies otherwise. The files in this directory are routinely overwritten when preparing applications for building, or when plugins are re-installed. + +### `plugins/` + +Any added plugins will be extracted or copied into this directory. Review Comment: ```suggestion The `plugins` directory is used as a staging area where installed plugins are copied before being applied to the `platforms` directory. This directory should not be committed to version control. If you've created custom, in-house or modified plugins and want to store them within the project, it's recommended **not** to store them in the
Re: [PR] Extract project structure into its own file [cordova-docs]
dpogue commented on code in PR #977: URL: https://github.com/apache/cordova-docs/pull/977#discussion_r1830530470 ## www/docs/en/dev/guide/overview/project-structure.md: ## @@ -0,0 +1,100 @@ +--- +license: > +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. + +title: Project Structure of a Cordova Project +toc_title: Project Structure +description: +--- + +# Project Structure + +## CLI's Default Directory Structure + +A project created with Cordova CLI comes with the follow directory structure by default: + +```text +myapp/ +├── config.xml +├── node_modules/ +├── package.json +├── platforms/ +└── plugins/ +└── www +``` + +### `package.json` + +TODO + +### `config.xml` + +Configures your application and allows you to customize the behavior of your project. See also [config.xml reference documentation][config.xml ref] + +### `www/` + +Contains the project's web artifacts, such as .html, .css and .js files. As a cordova application developer, most of your code and assets will go here. They will be copied on a `cordova prepare` to each platform's www directory. The www source directory is reproduced within each platform's subdirectory, appearing for example in `platforms/ios/www` or `platforms/android/assets/www`. Because the CLI constantly copies over files from the source www folder, you should only edit these files and not the ones located under the platforms subdirectories. If you use version control software, you should add this source www folder, along with the merges folder, to your version control system. Review Comment: ```suggestion Contains the project's web artifacts, such as HTML, CSS, JavaScript, and other resource asset files. As a Cordova application developer, most of your code and assets will go here. They will be copied on a `cordova prepare` to each platform's `www` directory. The `www` source directory is reproduced within each platform's subdirectory, appearing for example in `platforms/ios/www` or `platforms/android/assets/www`. Because the CLI constantly copies over files from the source `www` folder, you should only edit these files and not the ones located under the platforms subdirectories. If you use a JavaScript build tool, you should set it to output your production distribution files to the `www` folder. If you are developing code in the `www` folder directly, you should add this folder to your version control system. ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org For additional commands, e-mail: issues-h...@cordova.apache.org
Re: [PR] Extract project structure into its own file [cordova-docs]
erisu commented on code in PR #977: URL: https://github.com/apache/cordova-docs/pull/977#discussion_r1830567407 ## www/docs/en/dev/guide/overview/project-structure.md: ## @@ -0,0 +1,100 @@ +--- +license: > +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. + +title: Project Structure of a Cordova Project +toc_title: Project Structure +description: +--- + +# Project Structure + +## CLI's Default Directory Structure + +A project created with Cordova CLI comes with the follow directory structure by default: + +```text +myapp/ +├── config.xml +├── node_modules/ +├── package.json +├── platforms/ +└── plugins/ +└── www +``` + +### `package.json` + +TODO + +### `config.xml` + +Configures your application and allows you to customize the behavior of your project. See also [config.xml reference documentation][config.xml ref] + +### `www/` + +Contains the project's web artifacts, such as .html, .css and .js files. As a cordova application developer, most of your code and assets will go here. They will be copied on a `cordova prepare` to each platform's www directory. The www source directory is reproduced within each platform's subdirectory, appearing for example in `platforms/ios/www` or `platforms/android/assets/www`. Because the CLI constantly copies over files from the source www folder, you should only edit these files and not the ones located under the platforms subdirectories. If you use version control software, you should add this source www folder, along with the merges folder, to your version control system. + +### `node_modules/` + +This directory contains all of the checked-out packages from the npmjs registry. + +When adding a Cordova platform or plugin with the `cordova platform add` and `cordova plugin add` command, these platforms and plugins are fetched from the npmjs registry and downloaded into the `node_modules/` directory. + +Cordova will then copy the necessary Cordova platform and plugin source code from the `node_modules` directory and place them into the appropriate location for Cordova to function. + +It also contain scripts that is used during the `cordova prepare` and `cordova build` for each platform. + +The `node_modules` directory is the original unedited source of truth and nothing should be edited in this directory. Additionally, this directory should not be checked into any version control system. + +For more details, see [npmjs folders documentation](https://docs.npmjs.com/cli/v7/configuring-npm/folders#node-modules). + +### `platforms/` + +Contains all the source code and build scripts for the platforms that you add to your project. + +> **WARNING:** When using the CLI to build your application, you should not edit any files in the /platforms/ directory unless you know what you are doing, or if documentation specifies otherwise. The files in this directory are routinely overwritten when preparing applications for building, or when plugins are re-installed. + +### `plugins/` + +Any added plugins will be extracted or copied into this directory. + Review Comment: Yeah, I think a warning should be added to not commit the plugins directory to version control. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org For additional commands, e-mail: issues-h...@cordova.apache.org
Re: [PR] Extract project structure into its own file [cordova-docs]
dpogue commented on code in PR #977: URL: https://github.com/apache/cordova-docs/pull/977#discussion_r1830538594 ## www/docs/en/dev/guide/overview/project-structure.md: ## @@ -0,0 +1,100 @@ +--- +license: > +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. + +title: Project Structure of a Cordova Project +toc_title: Project Structure +description: +--- + +# Project Structure + +## CLI's Default Directory Structure + +A project created with Cordova CLI comes with the follow directory structure by default: + +```text +myapp/ +├── config.xml +├── node_modules/ +├── package.json +├── platforms/ +└── plugins/ Review Comment: ```suggestion ├── plugins/ ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org - To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org For additional commands, e-mail: issues-h...@cordova.apache.org
Re: [PR] Extract project structure into its own file [cordova-docs]
dpogue commented on code in PR #977: URL: https://github.com/apache/cordova-docs/pull/977#discussion_r1830531863 ## www/docs/en/dev/guide/overview/project-structure.md: ## @@ -0,0 +1,100 @@ +--- +license: > +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. + +title: Project Structure of a Cordova Project +toc_title: Project Structure +description: +--- + +# Project Structure + +## CLI's Default Directory Structure + +A project created with Cordova CLI comes with the follow directory structure by default: + +```text +myapp/ +├── config.xml +├── node_modules/ +├── package.json +├── platforms/ +└── plugins/ +└── www +``` + +### `package.json` + +TODO + +### `config.xml` + +Configures your application and allows you to customize the behavior of your project. See also [config.xml reference documentation][config.xml ref] + +### `www/` + +Contains the project's web artifacts, such as .html, .css and .js files. As a cordova application developer, most of your code and assets will go here. They will be copied on a `cordova prepare` to each platform's www directory. The www source directory is reproduced within each platform's subdirectory, appearing for example in `platforms/ios/www` or `platforms/android/assets/www`. Because the CLI constantly copies over files from the source www folder, you should only edit these files and not the ones located under the platforms subdirectories. If you use version control software, you should add this source www folder, along with the merges folder, to your version control system. + +### `node_modules/` + +This directory contains all of the checked-out packages from the npmjs registry. Review Comment: ```suggestion This directory contains all of the JavaScript dependency packages from the npm JavaScript registry for Cordova and its tools, along with any dependencies of your project (as specified in `package.json`). ``` ## www/docs/en/dev/guide/overview/project-structure.md: ## @@ -0,0 +1,100 @@ +--- +license: > +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. + +title: Project Structure of a Cordova Project +toc_title: Project Structure +description: +--- + +# Project Structure + +## CLI's Default Directory Structure + +A project created with Cordova CLI comes with the follow directory structure by default: + +```text +myapp/ +├── config.xml +├── node_modules/ +├── package.json +├── platforms/ +└── plugins/ +└── www +``` + +### `package.json` + +TODO + +### `config.xml` + +Configures your application and allows you to customize the behavior of your project. See also [config.xml reference documentation][config.xml ref] + +### `www/` + +Contains the project's web artifacts, such as .html, .css and .js files. As a cordova application developer, most of your code and assets will go here. They will be copied on a `cordova prepare` to each platform's www directory. The www source directory is reproduced within each platform's subdirectory, appearing for example in `platforms/ios/www` or `platforms/android/assets/www`. Because the CLI constantly copies over files from the source www folder, you should only edit these files and not the ones located under the platforms subdirectories. If you use version control software, you should add this source www folder, along with the merges folder, to your version control system. Review Comment: ```suggestion Contains the project's web artif