Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,21 @@ $ npm install # install all the node dependencies
$ code . # launch vscode
```

### Building the SDK

The Parse JS SDK is built for three platforms:

- The browser
- nodejs
- react-native

When developing the SDK you can use `npm run watch` in order to rebuild your changes upon each saves.
By default, the watch command will rebuild the SDK for the node platform. You can toggle this by setting the environment variable PARSE_BUILD. Valid values are:

- node
- browser
- react-native

### Testing the code

The SDK is tested through two lenses. unit tests are run with jest and integrationt tests with jasmine.
Expand Down