Visit quorini.com for more details.
Visit quorini.app to start building new project.
For more detail about packages
npm package @quorini/core – is used to configure a project with the backend published by quorini.app. Quorini SDK enables developers to develop Quorini Backend-powered mobile and web apps.
npm package @quorini/ui-react – leverages a range of functions and React hooks designed to seamlessly integrate with your React application configured using the @quorini/core
package in conjunction with the backend services provided by quorini.app
npm install @quorini/core
npm install @quorini/ui-react
-
Go to quorini.app "Live API".
-
Navigate to "Tech Docs" tab.
-
Copy types, queries and mutations and place in you codebase/repository.
3.1../src/quorini-types.d.ts
3.2../src/quorini-queries.ts
3.3../src/quorini-mutations.ts
-
Inside
index.tsx
globally configure you SDK integration.
4.1.projectId
can be copied from URL path of "Live API".
4.2.env
(optional) can be "production" or "development". By default, it’s "production".
4.3.qglPaths
(optional) and values are from step 3.// index.tsx ... import { QClient } from "@quorini/core" import * as queries from './src/quorini-queries' import * as mutations from './src/quorini-mutations' QClient.configure({ projectId: "YOUR_PROJECT_ID", env: "YOUR_PROJECT_ENV", gqlPaths: { queries, mutations, }, }) ...