Got a simple question I can’t seem to find an answer to.
On my .js file I have console.log that I hope to spit out the version number of the running ParseServer.
But I can’t figure out where to get the information. Does the ParseServer instance have that information or maybe somewhere else?
app.listen(1337, function() {
console.log('parse-server version: ' + server.version); // server version here?
console.log('parse-server: running on port 1337.');
});
Basically how is ParseDashboard showing the server version?
thanks in advance!