Mereos is a JavaScript library for online proctoring.
The mereos
package contains only the functionality necessary to conduct an online proctoring. It empowered with Artifical intelligence to make online proctoring reliable and secure.
Note: by default, mereos is a open source library. However it works in subscription based model. You are encourged to buy the subscription from mereos.
- Import the mereos library.
var mereos = require('mereos');
init
function is used to initiate a session of proctoring. It takescandidate_object
,profile_id
andassessment_object
.
Note:
profile_id
is related to proctoring profile which is created at Admin panel.
external_id
in candidate_object is a unique id of candidate in LMS. It's advice to used properly to bridge library and LMS.
external_id
in assessment_object is the id of assessment in LMS. It's advice to used properly to bridge library and LMS.
var {init} = require('mereos');
var candidate_object = {
type: 'candidate',
name: `John Doe`,
email: 'john.doe@gmail.com',
phone: '+613324234',
external_id: 'ui11223',
school: 1999999,
...
}
var profile_id = 33212214;
var assessment_object = {
name: 'Geology',
external_id: '3235235235'
...
}
var resp = init(candidate_object, profile_id, assessment_object);
start_prechecks
function is used to start prechecks. All the prechecks are based on profile used ininit
function. This function takes a callback function which runs once the whole process of prechecks is executed.
var {start_prechecks} = require('mereos');
var resp = start_prechecks(callback);
start_session
function is used to start the session of proctoring through library. This function takes a callback function which runs once the whole process is executed.
var {start_session} = require('mereos');
var resp = start_session(callback);
stop_session
function is used to finish the session. This function takes a callback function which runs once the whole process is executed.
var {stop_session} = require('mereos');
var resp = stop_session(callback);
The main purpose of this repository is to continue evolving mereos core, making it faster and easier to use. Development of Mereos happens in the open on GitHub, and we are grateful to the community and our devs for contributing bugfixes and improvements. Read below to learn how you can take part in improving React.
Mereos has adopted a Code of Conduct that we expect project participants to adhere to. Please read the full text so that you can understand what actions will and will not be tolerated.
Read our contributing guide to learn about our development process, how to propose bugfixes and improvements, and how to build and test your changes to Mereos.
To help you get your feet wet and get you familiar with our contribution process, we have a list of good first issues that contain bugs that have a relatively limited scope. This is a great place to get started.
Mereos is MIT licensed.