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
Choose the plan that best fits your needs, or buy the self-hosted API and host it on your own VPS server.
$ 5/month
$ 12/month
$ 25/month
$ 39/month
$ 109 one-time fee
1: The number of databases you can create always depends by the available storage of your chosen Plan
2: Estimated on .jpg files with an average size of 200 Kb
3: This is not a subscription Plan, but a single purchase
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.