https://github.com/groupdocs-annotation-cloud/groupdocs-annotation-cloud-node
Node.js module for communicating with the GroupDocs.Annotation REST API. Annotate documents & images in the Cloud
https://github.com/groupdocs-annotation-cloud/groupdocs-annotation-cloud-node
annotation annotation-cloud-api cloud document document-annotation excel groupdocs images nodejs-sdk pdf powerpoint rest-api word
Last synced: 11 days ago
JSON representation
Node.js module for communicating with the GroupDocs.Annotation REST API. Annotate documents & images in the Cloud
- Host: GitHub
- URL: https://github.com/groupdocs-annotation-cloud/groupdocs-annotation-cloud-node
- Owner: groupdocs-annotation-cloud
- License: mit
- Created: 2018-10-23T09:06:38.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2025-07-15T08:06:51.000Z (7 months ago)
- Last Synced: 2025-08-31T22:41:42.225Z (5 months ago)
- Topics: annotation, annotation-cloud-api, cloud, document, document-annotation, excel, groupdocs, images, nodejs-sdk, pdf, powerpoint, rest-api, word
- Language: TypeScript
- Homepage: https://products.groupdocs.cloud/annotation/nodejs
- Size: 5.06 MB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GroupDocs.Annotation Cloud Node.js SDK
Node.js module for communicating with the GroupDocs.Annotation Cloud API
## Installation
A package `groupdocs-annotation-cloud` is available at [npmjs.com](https://www.npmjs.com/package/groupdocs-annotation-cloud). You can install it with:
```shell
npm install groupdocs-annotation-cloud
```
## Getting Started
Please follow the [installation](#installation) procedure and then run the following JavaScript code:
```js
// load the module
var GroupDocs = require('groupdocs-annotation-cloud');
// get your appSid and appKey at https://dashboard.groupdocs.cloud (free registration is required).
var appSid = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX";
var appKey = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
// construct AnnotationApi
var infoApi = GroupDocs.InfoApi.fromKeys(appSid, appKey);
// retrieve supported file-formats
infoApi.getSupportedFileFormats()
.then(function (response) {
console.log("Supported file-formats:")
response.formats.forEach(function (format) {
console.log(format.fileFormat + " (" + format.extension + ")");
});
})
.catch(function (error) {
console.log("Error: " + error.message)
});
```
Or compile and run same written in TypeScript:
```ts
// load the module
import { InfoApi } from "groupdocs-annotation-cloud";
// get your appSid and appKey at https://dashboard.groupdocs.cloud (free registration is required).
const appSid: string = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX";
const appKey: string = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
// construct AnnotationApi
const infoApi: InfoApi = InfoApi.fromKeys(appSid, appKey);
// retrieve supported file-formats
infoApi.getSupportedFileFormats()
.then((result) => {
console.log("Supported file-formats:");
result.formats.forEach((format) => {
console.log(format.fileFormat + " (" + format.extension + ")");
});
})
.catch((error) => {
console.log("Error: " + error.message);
});
```
## Licensing
GroupDocs.Annotation Cloud Node.js SDK licensed under [MIT License](LICENSE).
## Resources
+[**Website**](https://www.groupdocs.cloud)
+[**Product Home**](https://products.groupdocs.cloud/annotation)
+[**Documentation**](https://docs.groupdocs.cloud/annotation/)
+[**Free Support Forum**](https://forum.groupdocs.cloud/c/annotation)
+[**Blog**](https://blog.groupdocs.cloud/category/annotation)
## Contact Us
Your feedback is very important to us. Please feel free to contact us using our [Support Forums](https://forum.groupdocs.cloud/c/annotation).