Skip to content

oceanbeedev/nc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

1 Commit
Β 
Β 

Repository files navigation

NabiCloud (BaaS)

Website: https://nabicloud.ir

Build Dynamic Frontends Without Managing a Backend

NabiCloud is a Backend-as-a-Service (BaaS) platform that lets you build powerful, dynamic applications without creating or maintaining your own backend infrastructure.

With NabiCloud, you can manage your data, connect through APIs, and store files easily.

πŸš€ Trial Version

Start building with NabiCloud using the trial version:

  • No backend setup required
  • Create dynamic applications quickly
  • Manage data through APIs
  • Store and organize files
  • Connect any frontend technology

JavaScript Fetch Example

const apiToken = "{your api token}";

fetch(`https://nabicloud.ir/api/${apiToken}/collections`, {
    method: "POST",
    headers: {
        "Content-Type": "application/json"
    },
    body: JSON.stringify({
        query: JSON.stringify({
            collections: {
                posts: {
                    select: [
                        "id",
                        "title",
                        "thumbnail"
                    ],
                    relations: [
                        "author",
                        "categories"
                    ],
                    per_page: 10
                }
            }
        })
    })
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error));

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors