Created
November 18, 2013 17:39
-
-
Save cgkio/7531975 to your computer and use it in GitHub Desktop.
Parse JavaScript SDK in Node.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Parse = require('parse').Parse; | |
Parse.initialize("Your App Id", "Your JavaScript Key"); | |
var query = new Parse.Query(Parse.User); | |
query.find({ | |
success: function(users) { | |
for (var i = 0; i < users.length; ++i) { | |
console.log(users[i].get('username')); | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment