0.0.2 • Published 8 months ago

@openbp/erp v0.0.2

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
8 months ago

OpenBP erp module library

This library is created for inter-service communication in the OpenBP. You can only use this library for developing new OpenBP modules because it establishes a connection with services using internal communication protocols. This will not work if you want to communicate with OpenBP from external application. For this use-case check @openbp/sdk.

Basic usage

import { ERPStub } from '@openbp/erp'

// Creating services communication "proxy". This will only connect to the selected services
const stub = new ERPStub()
await stub.connect()

// Now you can communicate with erp services
const catalogs = []
await stub.services.core.catalog.GetAll({ useCache: true }).forEach((c) => catalogs.push(n))
console.log(catalogs)

// Dont forget to close connection
stub.close()
0.0.2

8 months ago

0.0.1

8 months ago