npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

gestios-sdk-js

v0.83.0

Published

GestiOS Javascript SDK

Downloads

10

Readme

GestiOS SDK for JavaScript

Official GestiOS SDK for Node.js. Connect to your GestiOS project and operate with your API Rest.

💾 Installing

To use the SDK, simply install by npm:

npm install gestios-sdk-js

You only need to instance library:

const GestiOS = require('gestios-sdk-js');

const gestios = new GestiOS({
    project: 'YOUR_PROJECT_NAME',
    token: 'YOUR_TOKEN_ACCESS',
    url: 'YOUR_GESTIOS_URL',
    debug: true|false,
});

const item = await gestios.app(YOUR_APP_NAME).get(YOUR_ITEM_ID);

console.log(item);

🗃️ APPs

First, you need to instance your app:

const app = await gestios.app('contacts');

List items

You can list all items from specific app:

const data = await app.list({page: 1, limit: 2});

will output:

⛔: 404 {
    ok: false,
    code: 404,
    message: 'No se encontraron resultados',
    errors: []
}

✅: 200 {
    ok: true,
    code: 200,
    data: [
        {
            _EntityId: 20,
            _EntityStatus: 1,
            _EntityCreateDate: '2020-06-25 11:49:59',
            _EntityCreateUser: {
                ID: 40,
                Nick: 'Jhon',
                Nombre: 'Jhon Doe',
                Email: '[email protected]'
            },
            _EntityCreateIp: '127.0.0.1',
            _EntityUpdateDate: null,
            _EntityUpdateUser: null,
            _EntityUpdateIp: null,
            client_name: 'Connie E. Ward',
            client_mail: '[email protected]',
            client_location: '3806 Alfred Drive',
            client_phone: '718-242-6537'
            _Comments: []
        },{
            _EntityId: 21,
            _EntityStatus: 1,
            _EntityCreateDate: '2020-06-25 16:49:59',
            _EntityCreateUser: {
                ID: 41,
                Nick: 'Stella',
                Nombre: 'Stella R. Converse',
                Email: '[email protected]'
            },
            _EntityCreateIp: '127.0.0.1',
            _EntityUpdateDate: null,
            _EntityUpdateUser: null,
            _EntityUpdateIp: null,
            client_name: 'Richard L. Smith',
            client_mail: '[email protected]',
            client_location: '78 Brooke Street',
            client_phone: '713-718-1768'
            _Comments: []
        }
  ],
  total: 13
}

Parameters:

|Param|Required|Default|Description| |---------|---------|---------|---------| | page |⚫| 1 |Number of page to list | | limit |⚫| 20 |Items per page from 1 to 100 | | filters |⚫| null |Filter array| | order |⚫| null |Order array|

If u need all items from app (Page & limit params not required):

const data = await app.all();

💁 ADVISE This method may cause high load on your api usage

Get item

Get specific item based on unique ID:


const data = await app.get(20);

will output:

⛔: 404 {
    ok: false,
    code: 404,
    message: 'No se encontraron resultados',
    errors: []
}

✅: 200 {
    ok: true,
    code: 200,
    data: {
        _EntityId: 20,
        _EntityStatus: 1,
        _EntityCreateDate: '2020-06-25 11:49:59',
        _EntityCreateUser: {
            ID: 40,
            Nick: 'Jhon',
            Nombre: 'Jhon Doe',
            Email: '[email protected]'
        },
        _EntityCreateIp: '127.0.0.1',
        _EntityUpdateDate: null,
        _EntityUpdateUser: null,
        _EntityUpdateIp: null,
        client_name: 'Connie E. Ward',
        client_mail: '[email protected]',
        client_location: '3806 Alfred Drive',
        client_phone: '718-242-6537'
        _Comments: []
    }
}

Parameters:

|Param|Required|Default|Description| |---------|---------|---------|---------| | id |🔴| 1 |Unique item identifier|

New item

You can create new items. All field's validations will processed by API and throw errors if exists


const params = {
    client_name: 'Brandon W. Woody',
    client_mail: '[email protected]',
    client_location: '2372 Clinton Street',
    client_phone: '501-241-5023'
};

const data = await app.add(params);

will output:

// With bad params (ex: invalid email)
⛔: 400 {
    ok: false,
    code: 400,
    message: 'No se han recibido los parámetros correctos',
    errors: [ 'El campo Email debe contener una dirección de correo válida.' ],
    data: null
}

// All params correct
✅: 200 {
    ok: true,
    code: 200,
    data: {
        _EntityId: 22,
        _EntityStatus: 1,
        _EntityCreateDate: '2020-06-25 13:34:59',
        _EntityCreateUser: {
            ID: 40,
            Nick: 'Jhon',
            Nombre: 'Jhon Doe',
            Email: '[email protected]'
        },
        _EntityCreateIp: '127.0.0.1',
        _EntityUpdateDate: null,
        _EntityUpdateUser: null,
        _EntityUpdateIp: null,
        client_name: 'Brandon W. Woody',
        client_mail: '[email protected]',
        client_location: '2372 Clinton Street',
        client_phone: '501-241-5023'
        _Comments: []
    }
}

Parameters:

|Param|Required|Default|Description| |-|-|-|--| | params |🔴| null |All fields to sent| | callback |⚫| null |GestiOS will call this url with job data|