2.0.0 • Published 6 years ago

googleapis-async v2.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

googleapis-async : an async-await wrapper for googleapis module.

The enhanced googleapis module that enables you to await its methods.

Example Try it now!

const google = require("googleapis-async");

async function go()
{
	try
	{
		const result = await google.urlshortener("v1").url.get({
			shortUrl: "https://goo.gl/xKbRu3"
		});
		console.info(result);
	}
	catch(error)
	{
		console.error(error);
	}
}

go();

Any bugs, suggestions, or questions?

If you found a bug on it, or if you want to suggest something to improve it, or if you have a question, please leave an issue on the GitHub repository or send an e-mail to me: wlzla000@naver.com.

Feel free to contribute!

Thank you.

Licensed under

the MIT license.

2.0.0

6 years ago

1.1.0

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago