https://github.com/jexia/docs
Official docs for Jexia platform
https://github.com/jexia/docs
Last synced: 3 months ago
JSON representation
Official docs for Jexia platform
- Host: GitHub
- URL: https://github.com/jexia/docs
- Owner: jexia
- Created: 2020-02-26T15:23:25.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-12T04:28:12.000Z (almost 3 years ago)
- Last Synced: 2025-06-09T01:36:34.499Z (4 months ago)
- Language: Python
- Size: 4.16 MB
- Stars: 3
- Watchers: 10
- Forks: 1
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://chat.jexia.com)
### As Easy as 1, 2, 3
```js
import { jexiaClient, dataOperations } from "jexia-sdk-js/node"; // jexia-sdk-js/browser;
const dataModule = dataOperations();// You can need to use API Key / API Secret which is generated in Jexia.
//Do not forget make Policy for API
jexiaClient().init({
projectID: "project_id",
key: "API_KEY",
secret: "API_SECRET",
},dataModule);// Now you can run CRUD operations for Dataset: clients
dataModule.dataset("clients")
.select()
.subscribe(records => {
// you will always get an array of created records, including their
//generated IDs (even when inserting a single record)
},
error => {
// you can see the error info here, if something goes wrong
});
```