Skip to content

ui-icts/redcap-1

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

redcap.js

simple, lightweight client module for REDCap

npm Travis

Features

  • Easy to use module-based api
  • Callback architecture for easy integration
  • Standardized design to provide consist look and feel across REDCap modules
  • Integrate multiple REDCap projects into a single application

Installation

npm install redcap --save

Getting Started

Here is a simple example of exporting (or reading) all the records in a project:

const config = {
  host: 'someredcapserver.edu',
  path: '/apipath/'
};

const redcap = require ('redcap') (redcapToken, config);

redcap.records.export (function (err, res) {
  if (err) {
    // handle error
  }
  else {
    console.log (res);    
  }
};

Next Steps

For more information on how redcap.js works and how you can implement it into your own project, check out the wiki.

About

Node.js driver module for REDCap

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%