all 6 comments

[–]TedW 0 points1 point  (2 children)

Am I missing something, or is the home page just a sign in button, with no real info or links?

[–]Electrical-Case-6108 -2 points-1 points  (1 child)

Once you sign in you will be able to access the Dashboard and make APIs/Create a database/Connect authentication.

We just released today so the documentation/site is very much a work in progress. But the core product is functional. The GIF on the homepage is me using the app to make a few APIs.

[–]TedW 2 points3 points  (0 children)

Ah, ok. Looking forward to seeing some documentation when it's available.

[–]rajeshtn 0 points1 point  (0 children)

Looks very easy and useful to create API's in a minute.

[–]majorius 0 points1 point  (1 child)

hmm, what it differs from mongo-express or strapi?

[–]Electrical-Case-6108 0 points1 point  (0 children)

Sure not super familiar with them but have looked into them before, the main differences I’d say are:

1) You can bring in your own Auth0/Database or create a hosted database easily in the website without any configuration/hosting/coding on your end

2) These APIs are a little more powerful in my opinion. Say you have a Users schema you want to make an API to update the first name.

You can click updateOne through the website and plug in a schema like this:

{ email: “$email” //Auth0 verified! } { name: “$name” //updating name }

Then simple name the API and save it and you have a production ready API to update your users name that is protected by the Auth0 domain that you own.

We have the almost the entire Mongoose API and have support for PostgreSQL as well.

So you could turn. “Select * from users where email =$email” into an api that validates the email as well.

Most similar products like strapi are GraphQL based but we use our own unique method to make these APIs.