I am concerned that Parse uses jQuery-compatible promises, as I have read that jQuery promises allow consumers to mutate the state of the promise.
You don't need to be concerned. "jQuery-compatible" can mean a lot of things, and Parse promises do certainly not allow consumers to mutate their state1 (as jQuery doesn't do either since years now). Btw, they're A+ "compatible" as well :-)
1: through the public methods. So not more than most other implementations, that is.
Is it possible to use another promise implementation that is known to be Promises/A+ compliant with the Parse JavaScript SDK?
Yes. The Parse SDK does return valid A+ thenables, which means that you can return Parse promises from then callbacks of your favourite promise implementation and expect it to work flawlessly:
myCompliantPromise.then(function(res) {
    return parse_query.get(…);
}).then(…)
You can also cast them into valid promises of your implementation by using Promise.resolve, for example:
Promise.resolve(parse_query.get(…)).then(…);
Normally I would assume that this isn’t possible, but in v1.4.2 of the Parse JavaScript SDK, the implementation of Parse.Promise defines the property _isPromisesAPlusCompliant as false which is then checked in various functions within the library.
He! Although it is unfortunately undocumented, this flag does actually allow you to make the native Parse.com promise library A+ compliant in your app:
Parse.Promise._isPromisesAPlusCompliant = true;
Update: In newer versions, this is not exposed as an underscored property, but rather you have to call the (undocumented) Parse.Promise.enableAPlusCompliant() method. For details see issue #57.
I've reviewed the code, and this flag basically changes 3 things:
- Exceptions in thencallbacks are caught and lead to the rejection of the result promise, instead of a global error. So you can usethrowin them.
- If you returna value from theonRejectedcallback (second parameter tothen), the error is supposed to be handled and the result promise is fulfilled instead of being rejected.
- All thencallbacks are executed asynchronously.
These are indeed solving exactly the problems inherent to the jQuery Deferred implementation at the current time.
I'll assume that Parse are planning to silently migrate this true setting to become the default, and are testing whether it breaks anything for the users. I'd guess that it is pretty safe to use even if undocumented yet.
I'd like to make all Parse APIs return promises of my custom library.
That's not so simple, although it can be done. There are basically two approaches:
- decorate all promise-returning methods in the API by composing them with Promise.resolve, which is basically what @dancamper suggested
- overwriting Parse.Promisewith a wrapper around your library.
The second seems to be more efficient and stable, it's more maintainable as it doesn't require tweaking when Parse change their API.
Parse.Promise = (function(oldPromise, Promise) {
    function promise() {
        var res, rej;
        var p = new Promise(function(_res, _rej) {
            res = _res;
            rej = _rej;
        });
        p.resolve = res;
        p.reject = rej;
        return p;
    }
    promise.is = oldPromise.is;
    promise.as = Promise.resolve;
    promise.error = Promise.reject;
    promise.when = Promise.all; // ²
    promise._continueWhile = oldPromise._continueWhile;
    Promise.prototype._continueWith = oldPromise.prototype._continueWith;
    Promise.prototype._thenRunCallback = oldPromise.prototype._thenRunCallback;
    // you might not need / want these ³
    Promise.prototype.always = oldPromise.prototype.always;
    Promise.prototype.done = oldPromise.prototype.done; 
    Promise.prototype.fail = oldPromise.prototype.fail;
    return promise;
}(Parse.Promise, require("Bluebird"))); // or whatever
2: Promise.all resolves to an array, while Parse.Promise.when resolves with multiple arguments (see below). You may want / need to preserve this and use promise.when = oldPromise.when; instead.
3: Make sure not to overwrite methods of your custom library here. Parse doesn't need these methods, they're for jQuery compatibility.
Notice that Parse does, like jQuery, sometimes resolve its promises with multiple values, e.g. in Parse._ajax. It doesn't rely on this feature internally, but you should check how your favourite promise library copes with them.