0.0.6 • Published 4 years ago

recon-client v0.0.6

Weekly downloads
3
License
BSD-3-Clause
Repository
github
Last release
4 years ago

recon-client

npm travis standard

Install

npm install recon-client@latest --save

Usage

const recon = require('recon-client');
const host = '127.0.0.1';
const port = 8080;
const path = 'a/b';

recon.connect(host, path);


recon.fetch(path, (data) => {
  if (data) console.log(data);
});


var newObj = {

};

recon.update(path, newObj, (data) => {
  if (data) console.log(data);
});

Contributing

Contributions welcome! Please read the contributing guidelines first.

License

BSD-3-Clause

Author

Written by John Musgrave @musgravejw

0.0.3

4 years ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.6

4 years ago

0.0.1

4 years ago