
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
@adempiere/grpc-enrollment-client
Advanced tools
ADempiere Enrollment Client write in Javascript for gRPC service
ADempiere Enrollment Client write in Javascript for gRPC service, use it for connect with ADempiere-gRPC-Server.
# installing via NPM
npm install @adempiere/grpc-enrollment-client --save
# installing via Yarn
yarn add @adempiere/grpc-enrollment-client
const Enrollment = require('@adempiere/grpc-enrollment-client');
// URL, Version
let enrollment = new Enrollment(GRPC_HOST, 'Version Epale');
const Enrollment = require('@adempiere/grpc-enrollment-client');
let enrollment = new Enrollment(GRPC_HOST, 'Version Epale');
// Request Enroll a User
// Name, UserName, EMail, Password (Optional)
enrollment.enrollUser('Hola Hola', 'hola', 'hola@hola.com')
.then(user => {
console.log('User Enrolled' + user);
})
.catch(err => console.log("Error: " + err.message));
Output
Hola Hola
// Request Reset Password
// UserName, EMail
enrollment.requestResetPassword('hola', 'hola@hola.com')
.then(resetPasswordResponse => {
console.log('Response for request' + resetPasswordResponse);
})
.catch(err => console.log("Error: " + err.message));
Output
Ok
// Request Reset Password
// Token, Password
enrollment.resetPasswordFromToken('53c1c836-6e47-11e9-8160-3709b250e4e1', 'holaPass')
.then(resetPasswordResponse => {
console.log('Response for reset' + resetPasswordResponse);
})
.catch(err => console.log("Error: " + err.message));
Output
Ok
// Request Activate User
// Token
enrollment.activateUser('53c1c836-6e47-11e9-8160-3709b250e4e1')
.then(activateUserResponse => {
console.log('Response for activate' + activateUserResponse);
})
.catch(err => console.log("Error: " + err.message));
Output
Ok
For recreate stub class you must have follow:
Note: You can also install protoc
and protoc-gen-grpc-web
by going to the repository directory and run the command:
sh install-protoc.sh
When installation is complete, check the version with
protoc --version
After installed it just go to source code folder an run it:
Run Enrollment gRPC
protoc proto/enrollment.proto \
--js_out=import_style=commonjs:src/grpc \
--grpc-web_out=import_style=commonjs,mode=grpcwebtext:src/grpc
Or run:
sh generate-stub.sh
The result is generated on: src/grpc folder
enrollment_grpc_web_pb.js
enrollment_pb.js
FAQs
ADempiere Enrollment Client write in Javascript for gRPC service
We found that @adempiere/grpc-enrollment-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.