npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@adempiere/grpc-api

v5.1.0

Published

ADempiere Web write in Javascript for a node service

Downloads

1,691

Readme

ADempiere gRPC-API library to Node.js

node version npm version License Downloads

ADempiere node.js write in JavaScript for gRPC service, currently is used as library of proxy ADempiere service and is published as NPM

See also:

Using it

# installing via NPM
npm install @adempiere/grpc-api --save
# installing via Yarn
yarn add @adempiere/grpc-api

A Example

Here a example for it using from Proxy of ADempiere API: https://github.com/adempiere/proxy-adempiere-api/blob/master/src/modules/adempiere-api/index.ts#L17

Recreate proto stub class (only for contribute to project)

For recreate stub class you must have follow:

Generate Proto Stub:

Generate with npm (Recommended):

Via npm:

# install dependecies and dev dependencies
npm ci

# generate all stub
npm run stub

Via yarn:

# install dependecies and dev dependencies
yarn ci

# generate all stub
yarn stub

Note to generate specific proto definition:

  • To base bank statement match: npm run stub:bank_statement_match
  • To base data type: npm run stub:base_data_type
  • To business: npm run stub:business
  • To business partner: npm run stub:business_partner
  • To core functionality: npm run stub:core_functionality
  • To dashboarding: npm run stub:dashboarding
  • To dictionary: npm run stub:dictionary
  • To enrollment: npm run stub:enrollment
  • To express movement: npm run stub:express_movement
  • To express receipt: npm run stub:express_receipt
  • To express shipment: npm run stub:express_shipment
  • To file management: npm run stub:file_management
  • To general ledger: npm run stub:general_ledger
  • To import file loader: npm run stub:import_file_loader
  • To in-out: npm run stub:in_out
  • To invoice: npm run stub:invoice
  • To issue management: npm run stub:issue_management
  • To logs: npm run stub:logs
  • To match po receipt invoice: npm run stub:match_po_receipt_invoice
  • To material management: npm run stub:material_management
  • To order: npm run stub:order
  • To payment: npm run stub:payment
  • To payment allocation: npm run stub:payment_allocation
  • To payment print export: npm run stub:payment_print_export
  • To payroll action notice: npm run stub:payroll_action_notice
  • To point of sales: npm run stub:point_of_sales
  • To product: npm run stub:product
  • To security: npm run stub:security
  • To time control: npm run stub:time_control
  • To time record: npm run stub:time_record
  • To user customization: npm run stub:user_customization
  • To workflow: npm run stub:workflow

Generate directly with grpc-tools:

Generate all stub:

grpc_tools_node_protoc \
    --js_out=import_style=commonjs,binary:src/grpc \
    --grpc_out=src/grpc \
    proto/access.proto proto/base_data_type.proto proto/business.proto proto/client.proto proto/core_functionality.proto proto/dictionary.proto proto/enrollment.proto proto/point_of_sales.proto
    # --grpc-web_out=import_style=commonjs,mode=grpcwebtext:$OUT_DIR
  • To access:
# Generate stub to access.proto file
grpc_tools_node_protoc \
    proto/access.proto \
    --js_out=import_style=commonjs,binary:src/grpc/ \
    --grpc_out=grpc_js:src/grpc/
    # --grpc-web_out=import_style=commonjs,mode=grpcwebtext:$OUT_DIR
  • To base data type:
# Generate stub to base_data_type.proto file
grpc_tools_node_protoc \
    proto/base_data_type.proto \
    --js_out=import_style=commonjs,binary:src/grpc/ \
    --grpc_out=grpc_js:src/grpc/
    # --grpc-web_out=import_style=commonjs,mode=grpcwebtext:$OUT_DIR
  • To dictionary:
# Generate stub to access.proto file
grpc_tools_node_protoc \
    proto/dictionary.proto \
    --js_out=import_style=commonjs,binary:src/grpc/ \
    --grpc_out=grpc_js:src/grpc/
    # --grpc-web_out=import_style=commonjs,mode=grpcwebtext:$OUT_DIR

Output proto stub

The result is generated on: src/grpc/proto/ folder

  • bank_statement_match_grpc_pb.js
  • bank_statement_match_pb.js
  • base_data_type_grpc_pb.js
  • base_data_type_pb.js
  • business_grpc_pb.js
  • business_pb.js
  • business_partner_grpc_pb.js
  • business_partner_pb.js
  • core_functionality_grpc_pb.js
  • core_functionality_pb.js
  • dashboarding_grpc_pb.js
  • dashboarding_pb.js
  • dictionary_grpc_pb.js
  • dictionary_pb.js
  • enrollment_grpc_pb.js
  • enrollment_pb.js
  • express_movement_grpc_pb.js
  • express_movement_pb.js
  • express_receipt_grpc_pb.js
  • express_receipt_pb.js
  • express_shipment_grpc_pb.js
  • express_shipment_pb.js
  • file_management_pb.js
  • file_management_grpc_pb.js
  • general_ledger_pb.js
  • general_ledger_grpc_pb.js
  • import_file_loader_pb.js
  • import_file_loader_grpc_pb.js
  • in_out_grpc_pb.js
  • in_out_pb.js
  • invoice_grpc_pb.js
  • invoice_pb.js
  • issue_management_grpc_pb.js
  • issue_management_pb.js
  • logs_grpc_pb.js
  • logs_pb.js
  • match_po_receipt_invoice_grpc_pb.js
  • match_po_receipt_invoice_pb.js
  • material_management_grpc_pb.js
  • material_management_pb.js
  • order_grpc_pb.js
  • order_pb.js
  • payment_allocation_grpc_pb.js
  • payment_allocation_pb.js
  • payment_grpc_pb.js
  • payment_pb.js
  • payment_print_export_grpc_pb.js
  • payment_print_export_pb.js
  • payroll_action_notice_grpc_pb.js
  • payroll_action_notice_pb.js
  • point_of_sales_grpc_pb.js
  • point_of_sales_pb.js
  • product_grpc_pb.js
  • product_pb.js
  • record_management_grpc_pb.js
  • record_management_pb.js
  • security_grpc_pb.js
  • security_pb.js
  • time_control_grpc_pb.js
  • time_control_pb.js
  • time_record_grpc_pb.js
  • time_record_pb.js
  • user_customization_grpc_pb.js
  • user_customization_pb.js
  • workflow_grpc_pb.js
  • workflow_pb.js

Sponsors

Become a sponsor and get your logo on our README on GitHub with a link to your site. Become a sponsor