Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
@bdelab/jscat
Advanced tools
A library to support IRT-based computer adaptive testing in JavaScript
A library to support IRT-based computer adaptive testing in JavaScript
You can install jsCAT from npm with
npm i @bdelab/jscat
// import jsCAT
import { Cat, normal } from '@bdelab/jscat';
// declare prior if you choose to use EAP method
const currentPrior = normal();
// create a Cat object
const cat = new CAT({method: 'MLE', itemSelect: 'MFI', nStartItems: 0, theta: 0, minTheta: -6, maxTheta: 6, prior: currentPrior})
// update the abilitiy estimate by adding test items
cat.updateAbilityEstimate(zeta, answer);
const currentTheta = cat.theta;
const currentSeMeasurement = cat.seMeasurement;
const numItems = cat.nItems;
// find the next available item from an input array of stimuli based on a selection method
const stimuli = [{difficulty: -3, item: 'item1'}, {difficulty: -2, item: 'item2'}];
const nextItem = cat.findNextItem(stimuli, 'MFI');
Lucas Duailibe, irt-js, (2019), GitHub repository, https://github.com/geekie/irt-js
jsCAT is distributed under the ISC license.
FAQs
A library to support IRT-based computer adaptive testing in JavaScript
The npm package @bdelab/jscat receives a total of 516 weekly downloads. As such, @bdelab/jscat popularity was classified as not popular.
We found that @bdelab/jscat demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.