Skip to content

πŸ“‘ Serverless database integration for React and React Native with Easybase.

License

Notifications You must be signed in to change notification settings

cifuable/easybase-react

Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation



easybase logo black


npm GitHub npm bundle size npm


Documentation

Formal documentation for this library is available here.

Information on database querying can be found in the EasyQB docs.

Getting Started

Get your project up and running in just a couple of minutes:

  1. Download your ebconfig token and place it at the root of your project
β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ App.js
β”‚   β”œβ”€β”€ index.js
β”‚   └── ebconfig.js  <–––
β”œβ”€β”€ assets/
β”œβ”€β”€ package.json
└── ...
  1. Then, wrap your root component in EasybaseProvider with your credentials.
npm install easybase-react
import React, { useEffect } from "react";
import { EasybaseProvider, useEasybase } from 'easybase-react';
import ebconfig from "./ebconfig";

function App() {
  return (
    <EasybaseProvider ebconfig={ebconfig}>
      <Container />
    </EasybaseProvider>
  );
}

Examples

Contact

@easybase_io – hello@easybase.io

About

πŸ“‘ Serverless database integration for React and React Native with Easybase.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 82.2%
  • JavaScript 7.5%
  • Java 4.3%
  • Objective-C 2.5%
  • CSS 1.4%
  • Starlark 1.0%
  • Other 1.1%