1.3.3 • Published 5 years ago

@norjs/cloud-client v1.3.3

Weekly downloads
8
License
MIT
Repository
github
Last release
5 years ago

Client for NorJS's cloud framework

This module creates client interfaces into services provided by @norjs/cloud-backend.

Install: npm i --save '@norjs/cloud-client'

import cloudClient from '@norjs/cloud-client';

cloudClient('http://localhost:3000').then(instance => {
	return instance.getDate().then(date => {
		return instance.echo('foobar').then(str => {
			console.log('.echo("foobar") returned "' + str + '" of type '+ typeof str+ " and of class "+ str.constructor.name);
		});
	});
});
1.3.3

5 years ago

1.3.2

5 years ago

1.3.1

5 years ago

1.3.0

5 years ago

1.0.11

5 years ago

1.0.10

5 years ago