Skip to content
This repository has been archived by the owner on May 12, 2022. It is now read-only.

easybase/easybase-react

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 


easybase logo black


npm GitHub npm bundle size npm

Check out the full React & React Native walkthrough πŸ“—πŸ“˜


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