Skip to content
Guides

Creating a New Project

Let's create a simple app that integrates ComPDFKit for React Native.

  1. In the terminal app, change the current working directory to the location you wish to save your project. In this example, we’ll use the ~/Documents/ directory:

    bash
    cd ~/Documents
  2. Create the React Native project by running the following command:

    bash
    react-native init MyApp
  3. In the terminal app, change the location of the current working directory inside the newly created project:

    bash
    cd MyApp