0.1.40 • Published 3 months ago

pravda-js v0.1.40

Weekly downloads
48
License
ISC
Repository
bitbucket
Last release
3 months ago

PravdaJS

A JS client for PRAVDA

Build Status codecov

This is a Javascript Client for PRAVDA, which is a GraphQL API that interfaces with the Escenic's WebService. It can be used to query and mutate data in Escenic.

Example usage

Below is a non-ES6 example that gets a news article using promises:

'use strict';

var PravdaJS = require('pravda-js').default;
var client = new PravdaJS({ server: 'https://pravda.me' });

// getting news article with id 123
client.getNews(123)
    .then(function (result) {
        // result here
    }, function (err) {
        // error here
    });

Below is an ES6+ example that gets a news article using highland streams:

import PravdaJS from 'pravda-js';
const client = PravdaJS({ server: 'https://pravda.me', async: 'highland' });

// getting news article with id 123
client.getNews(123)
    .toCallback(function (err, result) { 
        // error and result here
    });

Below is an ES6+ example that gets a news article using highland streams with a specific Escenic user:

import PravdaJS from 'pravda-js';
const client = PravdaJS({ server: 'https://pravda.me', async: 'highland', user: escenicUser, password: escenicPassword });

// getting news article with id 123
client.getNews(123)
    .toCallback(function (err, result) { 
        // error and result here
    });
0.1.40

3 months ago

0.1.30-testing

3 months ago

0.1.30

2 years ago

0.1.27

2 years ago

0.1.28

2 years ago

0.1.29

2 years ago

0.1.24

3 years ago

0.1.22

4 years ago

0.1.21

4 years ago

0.1.19

4 years ago

0.1.15

7 years ago

0.1.14

7 years ago

0.1.13

7 years ago

0.1.12

7 years ago

0.1.11

7 years ago

0.1.10

7 years ago

0.1.9

8 years ago

0.1.8

8 years ago

0.1.7

8 years ago

0.1.6

8 years ago

0.1.5

8 years ago

0.1.4

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago

0.0.10

8 years ago

0.0.9

8 years ago

0.0.8

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago