Quickstart
Introduction
In this section, you will learn how to get started with Back4App using an existing or new project using React. You will install the Parse SDK
, initialize Parse using your App keys
, and make your first API call saving and reading data objects from Back4App.
Prerequisites
To complete this tutorial, you will need:
- An app created on Back4App;
- A recent version of Node.js, including
yarn
andnpx
Step 1 - Creating a React project
If you already have a working React project, you can skip to the next step.
Run the following command on the directory in which you would want to store the project, informing its name as well, in this case, back4app-guide-react
:
npx create-react-app back4app-guide-react
If Node.js
is properly configured, you should see the project being created in your terminal prompt. After completion, you will see a message informing you that the process was successful.
Open the project in your favorite code editor and let’s start integrating Parse.
Step 2 - Install dependencies
Let’s now install the only needed dependency, Parse JavaScript SDK
, to integrate your App with Back4App servers. Run the following command on your project root directory:
yarn add parse
Step 3 - Get your App Keys
After creating your App on Back4App, go to your App’s Dashboard and get your App Keys under App Settings->Security & Keys
(check the image below). Note that you will always need two keys to connect with Back4App, the Application ID
and Javascript KEY
.

Step 4 - Initialize Parse and connect to Back4App
Go to your App.js
and initialize the Parse SDK
using both the Application ID
and the Javascript KEY
(check the previous step).
App.js
1
2
3
4
5
6
7
8
9
// Import Parse minified version
import Parse from 'parse/dist/parse.min.js';
// Your Parse initialization configuration goes here
const PARSE_APPLICATION_ID = 'YOUR_APPLICATION_ID_HERE';
const PARSE_HOST_URL = 'https://parseapi.back4app.com/';
const PARSE_JAVASCRIPT_KEY = 'YOUR_JAVASCRIPT_KEY_HERE';
Parse.initialize(PARSE_APPLICATION_ID, PARSE_JAVASCRIPT_KEY);
Parse.serverURL = PARSE_HOST_URL;
Step 5 - Save and Read a simple Data Object
Your App is initialized and can securely connect to Back4app cloud services. Let’s now create a component containing two simple functions inside to save and retrieve data from your Back4App database. Create a new file named PersonComponent.js
in your src
directory and add the following code:
PersonComponent.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import React, { useState } from 'react';
import Parse from 'parse/dist/parse.min.js';
export const PersonComponent = () => {
// State variables
const [person, setPerson] = useState(null);
async function addPerson() {
try {
// create a new Parse Object instance
const Person = new Parse.Object('Person');
// define the attributes you want for your Object
Person.set('name', 'John');
Person.set('email', '[email protected]');
// save it on Back4App Data Store
await Person.save();
alert('Person saved!');
} catch (error) {
console.log('Error saving new person: ', error);
}
}
async function fetchPerson() {
// create your Parse Query using the Person Class you've created
const query = new Parse.Query('Person');
// use the equalTo filter to look for user which the name is John. this filter can be used in any data type
query.equalTo('name', 'John');
// run the query
const Person = await query.first();
// access the Parse Object attributes
console.log('person name: ', Person.get('name'));
console.log('person email: ', Person.get('email'));
console.log('person id: ', Person.id);
setPerson(Person);
}
return (
<div>
<button onClick={addPerson}>Add Person</button>
<button onClick={fetchPerson}>Fetch Person</button>
{person !== null && (
<div>
<p>{`Name: ${person.get('name')}`}</p>
<p>{`Email: ${person.get('email')}`}</p>
</div>
)}
</div>
);
};
The addPerson
method creates a new Parse.Object
representing a Person
class, sets its properties then saves it on the Back4App cloud data store. The method fetchPerson
retrieves a Parse.Object
which has the attribute name
equals to John
. When the query resolves, you will be able to access the person’s attributes using the get
method.
Note also the interface elements in this component, they consist of two buttons calling the methods and also two paragraphs retrieving the fetched Person
through a state variable.
We now need to import and use this component in your main App.js
file. Your App.js
file should look something like this, after removing most of the placeholder code in it.
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import './App.css';
import Parse from 'parse/dist/parse.min.js';
import { PersonComponent } from './PersonComponent';
// Your Parse initialization configuration goes here
const PARSE_APPLICATION_ID = 'YOUR_PARSE_APPLICATION_ID';
const PARSE_HOST_URL = 'https://parseapi.back4app.com/';
const PARSE_JAVASCRIPT_KEY = 'YOUR_PARSE_JAVASCRIPT_KEY';
Parse.initialize(PARSE_APPLICATION_ID, PARSE_JAVASCRIPT_KEY);
Parse.serverURL = PARSE_HOST_URL;
function App() {
return (
<div className="App">
<header className="App-header">
<PersonComponent />
</header>
</div>
);
}
export default App;
Step 6 - Test your App
-
Open your project’s terminal.
-
Run
yarn start
. Your browser should open after building with the app running. Click the button to add a newPerson
first, then click to fetch the samePerson
. -
You’ve saved and retrieved a data object from Back4App. You can also check the data on your App Dashboard and clicking on
Person
class.
What to do next
As you have seen, the easiest way to integrate Back4App into your React project is through the Parse Javascript SDK. The Parse SDK delivers an excellent development experience through a lightweight and easy-to-use layer that provides minimal configuration and code re-usability.