Since valid Javascript code can be executed in Objective J, how would I go about adding the Parse SDK?
Following this tutorial: Parse JS SDK
In my project, I can't add the HTML script tag:
<script src="//www.parsecdn.com/js/parse-1.6.14.min.js"></script>
nor can I use:
var Parse = require('parse');
What is the correct way to import Parse?
You need to add the script tag to your index.html and index-debug.html. Inside of these files you will see:
So change this to:
Then according to the document you referred to you need to connect your app to Parse server:
What I would do to add this to the 'init' method:
Start Python web server:
Check your app in the browser at localhost:8000