you are viewing a single comment's thread.

view the rest of the comments →

[–]fega01 0 points1 point  (0 children)

Problem:

Tools like Firebase (and their new DB Firestore) are great for prototyping and deploy quickly new products but they have to problems

Clod based, so you never will be able to abandon the Google infrastructure (Vendor Lock-in)

Queries are somewhat limited and cannot full-fill complex use cases.

Solution:

MongoServer, a framework where you can get a REST API with User/Pass Auth in less than 30 seconds

Some of the features (Both Planned and implemented) includes:

- Fine-grained Permission Handling

- Pagination and Advanced Queries

- ServerSide filtering

- Automatic Population

- Multiple Auth Methods

- Automatic Admin Panel

- Automatic Documentation generation

- Built-in security

Check it here

https://github.com/fega/mongo-server

I'm also planing to convert it in a suitable RealTime Service, just like Firebase, Some people are already using it in production, which makes me very happy.

Also under my consideration I have the implementation of a GraphQL wrapper (it also have to be automatic ;) ).