Check out what XServer can do for your applications.
Build your projects in no time with the Mobile, Web and Unity SDKs
The Admin panel, with its dark style, makes it easy for you to view and quickly edit data.
Store and query data through the SDKs, and add logic using the proper functions.
Store and query data through the SDKs, and add logic using the proper functions.
// Query data
<script>
function queryObjects() {
var objects = XSQuery(
'tableName=' + 'Posts' // Set the Table name
+ '&columnName=' + 'DT_createdAt' // Get the createdAt Date column
+ '&orderBy=' + 'descending' // OR 'ascending'
);
// Array of objects
var objectsArray = [];
for (var i = 0; i < objects.length; i++) {
// JSON Object
var obj = objects[i];
// Query filters
if( obj['ST_category'] == 'Fun' || obj['NU_likes'] == 101 ){ objectsArray.push(obj); }
// Finalize array of objects by removing duplicates (if any)
if (i == objects.length-1) { objectsArray = XSRemoveDuplicatesFromArray(objectsArray);
// Get data to show
console.log(obj['ID_id']);
console.log(obj['ST_text']);
} // ./ For
}
</script>
Read the Docs
Get the Web SDK
Buy the self-hosted API and host it on your own VPS server.
$7/month
$29 one-time fee
Feedbacks from mobile and web developers, designers, game creators and creative people.
I used to develop my apps with Firebase, but since I've found XServer out, I switched all my data to this awesome backend. It's so easy to use and it helped me saved tons of development hours!
I was looking for a good backend for my startup, with fair prices. XServer is a flexible and great alternative to BaaS services like Parse Server, my colleagues love it. Me too, of course!
As a 3D game creator, I needed to use a backend for some of my projects. XServer simplified my job a lot, allowing me to complete my games exactly the way I wanted.