https://github.com/ajsb85/node-module-glpi
Node client to interact with GLPI webservices plugin
https://github.com/ajsb85/node-module-glpi
api glpi rest-api webservice
Last synced: 14 days ago
JSON representation
Node client to interact with GLPI webservices plugin
- Host: GitHub
- URL: https://github.com/ajsb85/node-module-glpi
- Owner: ajsb85
- License: isc
- Created: 2016-03-19T14:55:51.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T17:39:03.000Z (over 2 years ago)
- Last Synced: 2025-10-17T21:37:35.671Z (8 months ago)
- Topics: api, glpi, rest-api, webservice
- Language: JavaScript
- Homepage: http://glpi-project.org
- Size: 7.81 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# glpi [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Dependency Status][daviddm-image]][daviddm-url] [![Coverage percentage][coveralls-image]][coveralls-url]
> Node client to interact with GLPI webservices plugin
## Developer Guide
##### Plugins GLPI-PROJECT » WebServices
This plugin provides a server for Web Services which allow an external application to check and control GLPI.
Currently, the servers implemented are:
* XMLRPC
* SOAP
It provides some methods and a development framework to allow other plugins to provide their own methods.
https://forge.glpi-project.org/projects/webservices/wiki/En_devguide
## Installation
```sh
$ npm install --save glpi
```
## Usage
```js
var glpi = require('glpi');
glpi('');
```
## License
ISC © [Alexander J. Salas B.](http://ajsb85.com)
[npm-image]: https://badge.fury.io/js/glpi.svg
[npm-url]: https://npmjs.org/package/glpi
[travis-image]: https://travis-ci.org/ajsb85/npm-glpi.svg?branch=master
[travis-url]: https://travis-ci.org/ajsb85/npm-glpi
[daviddm-image]: https://david-dm.org/ajsb85/npm-glpi.svg?theme=shields.io
[daviddm-url]: https://david-dm.org/ajsb85/npm-glpi
[coveralls-image]: https://coveralls.io/repos/ajsb85/npm-glpi/badge.svg
[coveralls-url]: https://coveralls.io/r/ajsb85/npm-glpi