Creates
n
random patients usingopenmrs.js
You will need git and Node.js installed (tested with v5).
Clone the repo:
git clone https://github.com/psbrandt/openmrs.js.git
Navigate to this example:
cd openmrs.js/examples/node/create-random-patients
Run:
npm install
create-random-patients [args]
Options:
-n, --number Number of patients to create [required]
-u, --user OpenMRS username [required]
-p, --pass OpenMRS password [required]
-h, --host OpenMRS application URL [required]
--help Show help [boolean]
Examples:
create-random-patients -n 5 -u admin -p Create 5 patients
Admin123 -h
http://localhost:8080/openmrs
Example:
node create-random-patients --host http://localhost:8082/openmrs-standalone -n 10 -u admin -p Admin123
Are you using the Reference Application? If not, download the standalone here and use that instead.
Read the HTTP access control (CORS) section here.
Ask questions on OpenMRS Talk in the dev
category using the javascript
tag. Issues should be logged in the OMRSJS
project on JIRA and the component
should be set to openmrs.js
.