KO
|
EN
gitlite โ search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
jexia-sdk-js
โ 15
Open GitHub โ
Jexia Javascript SDK
Download README (.md)
Explore Similar Repositories
decentraland-eth
:
DEPRECATED - Ethereum common helpers for Decentraland
rocketchat-export-userlist
:
๐ Simple Node CLI tool to export a complete user list of a Rocket.Chat server as CSV (or JSON) file
pusheen
:
Cat Pusheen on your screen
Tongji-Notifier
:
่ทๅๅๆตๅคงๅญฆ4m3็ฝ็ซๅๅๅญฆ้ข็ฝ็ซ้็ฅๅนถ่ฟ่ก้ฎไปถๅนฟๆญ็Python็ฌ่ซๆกๆถ
flutter_Study
:
flutter Developers Course And Demo
// repository documentation
Was this content helpful?
โ 0
(0 ratings)
Select Rating:
โ
โ
โ
โ
โ
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
jexia-sdk-js
?
Download (.md)
# Jexia Javascript SDK [](https://circleci.com/gh/jexia/jexia-sdk-js) [](https://chat.jexia.com) This is the official JavaScript / TypeScript SDK for interacting with Jexia projects. ## Install ```bash npm install jexia-sdk-js --save ``` or ```bash yarn add jexia-sdk-js ``` ## Example Use ```javascript const jexiaSDK = require("jexia-sdk-js/node"); // use require("jexia-sdk-js/browser") for browser const dataModule = jexiaSDK.dataOperations(); const credentials = { projectID: "<your-project-id>", zone: "<your-project-zone>", key: "<your-project-api-key>", secret: "<your-project-api-secret>", }; jexiaSDK.jexiaClient().init(credentials, dataModule); dataModule .dataset("posts") .select() .subscribe( records => console.log("All the records:", records), error => console.error("Something wrong happened:", error) ); ``` ### Documentation Check out [documentation](https://docs.jexia.com/) on the official Jexia website. ### Contributing You can find all the steps at the [Contributing Guide](https://github.com/jexia/jexia-sdk-js/blob/master/CONTRIBUTING.md). ## License [MIT](https://github.com/jexia/jexia-sdk-js/blob/master/LICENSE)