Intro
@glue42/office is a JavaScript library that allows Glue42-enabled applications to interact with Microsoft Office applications, using Glue42 Desktop functionalities.
@glue42/office includes the following modules:
- Excel
- Outlook
- Word
- (upcoming) PowerPoint
For more information, check the Glue42 Office Connectors documentation.
Usage
import Glue4Office from "@glue42/office";
const g4oConfig = {
application: 'Office Interop',
excel: true,
word: true,
outlook: false
}
Glue4Office(g4oConfig)
.then(g4o => {
window.g4o = g4o
})
.catch(console.error)