Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

jeedom-request-jsonrpc

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jeedom-request-jsonrpc

Module node pour API JEEDOM JSON-RPC

  • 1.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
increased by50%
Maintainers
1
Weekly downloads
 
Created
Source

Welcome to jeedom-request-jsonrpc 👋

Jeedom API - JSON RPC 2.0 for NodeJs

Coverage Coverage Coverage

Overview

Node module to calls Jeedom's RPC API : https://jeedom.github.io/core/fr_FR/jsonrpc_api

This module uses phin for request (https://github.com/ethanent/phin)

Install

  • npm i jeedom-request-jsonrpc --save
  • yarn add jeedom-request-jsonrpc

Get Started

Import package:

const { apiJeedom } = require('jeedom-request-jsonrpc')

Instanciate:

const apiJeedomRunnable = new apiJeedom(
    'jeedom-hostname-or-ip',
    'my-api-key'
)

Details of apiJeedom function:

apiJeedom(jeedomHost, apikey, reqParams = {}, jsonrpc = '2.0', uriJeedomApi = '/core/api/jeeApi.php')

  • jeedomHost host of jeedom server
  • apikey api key of jeedom
  • reqParams optionnals params to add to request (phin package options)
  • jsonrpc version of jsonrpc
  • uriJeedomApi base url of jeedom server

Make a request:

const requestJeedom = apiJeedomRunnable.run(
    'scenario::changeState', {
        id: 11,
        state: 'run'
    })

Details of apiJeedomRunnable.run function:

apiJeedomRunnable.run(cmd, params)

  • cmd command of API
  • params params belongs to command

Example 1 : (Promise flow)

requestJeedom
.then(response => {
    console.log('Response : ', response.result)
})
.catch(error => {
    console.log('An error : ', error)
})

Example 2 : (async - await)

const functionToRequestJeedom = async () => {
    try {
        let jeedomResponse = await requestJeedom
        console.log("Response", jeedomResponse)
    } catch (e) {
        cb(e)
    }
}

functionToRequestJeedom()

Requests result examples

without a value returned


{
    "statusCode": 200,
    "statusMessage":"OK",
    "result": true,
    "error": false
}

with a value returned

{
    "statusCode": 200,
    "statusMessage":"OK",
    "result":{
        "collectDate": "2018-09-30 14:49:03",
        "value": 21.2
     },
    "error": false
}

with an error

{
  "statusCode": 200,
  "statusMessage": "OK",
  "result": false,
  "error": {
    "code": 701,
    "message": "Cmd introuvable : 63334"
  }
}

Changelog

https://github.com/clement-berard/jeedom-request-jsonrpc/releases

Keywords

FAQs

Package last updated on 17 Sep 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc