https://github.com/javimosch/wrapkend-cli
Official client for wrapkend platform
https://github.com/javimosch/wrapkend-cli
backendless javascript wrapkend
Last synced: 5 months ago
JSON representation
Official client for wrapkend platform
- Host: GitHub
- URL: https://github.com/javimosch/wrapkend-cli
- Owner: javimosch
- License: apache-2.0
- Created: 2018-04-22T21:04:18.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-22T21:09:38.000Z (about 8 years ago)
- Last Synced: 2024-08-09T13:29:00.020Z (almost 2 years ago)
- Topics: backendless, javascript, wrapkend
- Language: JavaScript
- Homepage: https://wrapkend.com
- Size: 18.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
## wrapkend-cli
Official client for https://wrapkend.com
### Installation
> npm i --save wrapkend-cli
> yarn add wrapkend-cli
### Client side integration
```javascript
//ES6
import {client as createClient} from 'wrapkend-cli'
const wrapkend = createClient('PROJECT_API_KEY')
//ES5
const wrapkend = require('wrapkend-cli')
.client('PROJECT_API_KEY');
wrapkend('helloWorld',{
name:'Foo'
})
.then(console.log)
.catch(console.error)
```
#### How it works
The client connects to the wrapkend platform and executes the RPC Function tied to your project. It uses axios library to perform a simple post http call.
### Issues
> You can open an issue in the github repo
- No important issues were detected so far