Documentation
Feedback
Guides
App Development

App Development
Getting StartedStorefront apps
2. Creating the new app

Now that your development environment is set up, it is time to start developing your new React app.

To begin developing your app, you need to follow these steps:

  • Clone the React boilerplate app to your local files.
  • Modify the manifest.json file in the React example app to include your app's information, such as its name, version, vendor, and dependencies.
  • Link your app to a development workspace.

Once copied, the repository will automatically import the basic settings that you will need to kickstart your app development.

Step by step

Step 1 - Cloning the boilerplate repository to your local files

Clone the boilerplate repository to your local files by running the following command:


_10
git clone https://github.com/vtex-apps/react-app-template

Step 2 - Editing the manifest.json file

Now, let's examine the manifest.json file, which contains essential information about the app such as:

  • vendor - Name of the VTEX account responsible for developing, maintaining, and distributing the app.
  • name - App name of your choice. Avoid special characters.
  • version - Current version of the app following Semantic Versioning 2.0.0 standards.
  • title - The distribution name of the app that is displayed on the Apps section in the admin and, also, on the VTEX App Store.
  • description - Brief description of the app's features.
  • builders - List of builders that facilitate the app's development by abstracting service configurations.
  • dependencies - List of apps that the app you are developing depends on for proper functioning.

Incorporating the new app's basic information into the manifest.json file is a crucial step at the beginning of the development process. This step is essential to make the app unique and distinct from the example version provided by VTEX.

To add this information, open the app's code in your code editor, and update the manifest.json file as in the following:

  1. Replace the vendor field value with the name of the VTEX account you are using for development.
  2. Replace the name field value with the name of your app. Avoid using special characters, except hyphens (-).
  3. Replace the values in the title and description fields with appropriate ones that describe the app you are developing.
  4. Add the store@0.x builder to the builder list to allow the creation of new blocks:

_10
"builders": {
_10
+ "store": "0.x"
_10
}

  1. If you want to import any React components previously developed for your new app, update the dependencies list with the name and version of the app that runs the desired component. For example:

_10
"dependencies": {
_10
+ "vtex.styleguide": "9.x"
_10
}

This will allow you to later import the app component added in dependencies into your code via the import {componentName} from '{dependency}' structure.

Step 3 - Linking your app

To upload all the changes you made in your local files, you must link your app to the current development workspace by running the following command:


_10
vtex link

If the process runs without any errors, the following message will be displayed: App linked successfully.

To check and review your local app code, run the vtex browse command to open a browser window for your current workspace. Alternatively, access https://{workspace}--{account}.myvtex.com, replacing workspace with the development workspace in use and account with the name of your VTEX account.

When linking an app to a development workspace, the yarn install command is automatically executed in the builder directories (e.g., node and react directories). Nevertheless, for an enhanced development experience, consider manually running yarn install in the root folder of your project to activate additional features, such as linter and prettier checks.

Contributors
3
Photo of the contributor
Photo of the contributor
Photo of the contributor
+ 3 contributors
Was this helpful?
Yes
No
Suggest edits (Github)
See also
Manifest
App Development
Builders
App Development
Contributors
3
Photo of the contributor
Photo of the contributor
Photo of the contributor
+ 3 contributors
On this page