Skip to content

An open repository of jsPsych plugins and extensions, without any official support

Notifications You must be signed in to change notification settings

jspsych/jspsych-contrib

Repository files navigation

jspsych-contrib: jsPsych community contributions

This is an open repository of jsPsych plugins and extensions developed by members of the jsPsych community. If you've written a jsPsych plugin or extension that you think others might be interested in using, this is the place to share it!

jspsych vs. jspsych-contrib

Plugins and extensions in the main jsPsych repository are maintained by the core jsPsych team. The team takes responsibility for fixing bugs and updating plugins to take advantage of new features in jsPsych.

Plugins and extensions in this jspsych-contrib repository are contributed by community members. They are not extensively tested or verified by the core jsPsych team, and there is no guarantee that anyone will be available to fix bugs, push updates, or answer questions about these plugins/extensions. However we would encourage contributors to respond to issues/questions and to maintain their code.

Contributions to jspsych-contrib that are broadly useful, well-documented, and well-tested may be added to the main jsPsych repository, with the contributor's permission.

List of available plugins

The jsPsych plugins that have been contributed by community members can be found in the /packages directory. The /packages directory also contains four template sub-folders that can be used as a starting point for contributing a plugin/extension (see the Guidelines for contributions section).

Plugins

Plugin Contributor Description
audio-multi-response Adam Richie-Halford This plugin collects responses to an audio file using both button clicks and key presses.
audio-swipe-response Adam Richie-Halford This plugin collects responses to an audio file using swipe gestures and keyboard responses.
copying-task Andre Sahakian foo
corsi-blocks Josh de Leeuw This plugin displays a configurable Corsi blocks task and records a series of click responses.
gamepad Shaobin Jiang This plugin allows one to use gamepads in a jsPsych experiment.
html-choice Younes Strittmatter This plugin displays clickable html elements that can be used to present a choice.
html-keyboard-response-raf Josh de Leeuw This plugin uses the same functionality as the html-keyboard-response plugin, but uses requestAnimationFrame internally for timing
html-keyboard-slider Max Lovell Sliders which allow for keyboard responses.
html-multi-response Adam Richie-Halford This plugin collects responses to an arbitrary HTML string using both button clicks and key presses.
html-swipe-response Adam Richie-Halford This plugin collects responses to an arbitrary HTML string using swipe gestures and keyboard responses.
html-vas-response Isaac Kinley This plugin collects responses to an arbitrary HTML string using a point-and-click visual analogue scale.
image-array-keyboard-response Younes Strittmatter This plugin displays an arbitrary number of images and records responses generated with the keyboard.
image-multi-response Adam Richie-Halford This plugin collects responses to an image stimulus using both button clicks and key presses.
image-swipe-response Adam Richie-Halford This plugin collects responses to an image stimulus using swipe gestures and keyboard responses.
ios Isaac Kinley This plugin implements a continuous version of the Inclusion of Other in the Self (IOS) Scale (Aron et al., 1992).
libet-intentional-binding Isaac Kinley This plugin measures intentional binding using a Libet clock, and allows the participant to estimate the timing of events by adjusting the clock hand themselves.
nextcloud-filedrop C. Martin Grewe This plugin provides permanent storage of data collected during an experiment using a nextcloud instance.
pipe Josh de Leeuw jsPsych plugin to faciliate communication with DataPipe
rdk Josh de Leeuw This plugin displays a Random Dot Kinematogram (RDK) and allows the subject to report the primary direction of motion by pressing a key on the keyboard.
rok Younes Strittmatter This plugin displays a Random Object Kinematogram (ROK) and allows the subject to report the primary direction of motion or the primary orientation by pressing a key on the keyboard.
self-paced-reading igmmgi Self-paced reading tasks with different display options.
survey-number Josh de Leeuw This plugin displays a survey question and collects a numeric response.
survey-slider Dominique Makowski Add several analogue scales on the same page for use in questionnaires.
test cherrie test
video-several-keyboard-responses Maria Emine Nylund jsPsych plugin for playing a video file and getting several keyboard responses
vsl-animate-occlusion Josh de Leeuw he VSL (visual statistical learning) animate occlusion plugin displays an animated sequence of shapes that disappear behind an occluding rectangle while they change from one shape to another.
vsl-grid-scene Josh de Leeuw The VSL (visual statistical learning) grid scene plugin displays images arranged in a grid.

Extensions

Extension Contributor Description
countdown Shaobin Jiang This extension adds a countdown during a trial.
device-motion Pedro Neto jsPsych extension for tracking device motion
mediapipe-face-mesh C. Martin Grewe This extension provides online tracking of facial posture during trials using the MediaPipe Face Mesh library.
touchscreen-buttons Younes Strittmatter foo

Guidelines for contributions

Contributions to this repository must:

  • Work as described
  • Include the complete code for the plugin or extension.
  • Include a readme.md file following our template.
  • Include a package.json file.

Optionally, contributions can include:

  • A /docs directory with documentation matching the template for docs on jspsych.org
  • An /examples directory with a working .html demo.
  • A test suite following the testing framework in our -ts templates.

To submit a contribution, open a pull request that contains a directory for your plugin/extension inside the /packages directory. In the pull request comments, please make it clear how we can verify that the contribution is functional. This could be accomplished with a link to a demonstration experiment, the inclusion of an example file and/or testing files, or through some other means. We try to review pull requests quickly and add new contributions as soon as the minimal standards are met.

Creating a new plugin or extension

After cloning this repository, run npm install and then npm run new. This will prompt you through the process of creating a new plugin or extension. The tool will create a new directory in the /packages directory with the appropriate files and names.

You may want to read the jsPsych documentation on plugin development to understand how to work with the index.tsfile (for TypeScript development) and index.js file (for JavaScript development).

TypeScript template

This template uses TypeScript source files that are complied into JavaScript using Node.js and npm. This is the format used for plugins in the main jsPsych repo. To use this template, you should edit the src/index.ts file, keeping the overall structure but changing the details as appropriate (parameters, trial method, etc.). You can then use the npm run build command to compile your index.ts code into JavaScript files, which will appear in a /dist directory. This format also allows you to add a Jest test file (optional).

For more details, including setup instructions and detailed explanations of files, please see the jsPsych documentation page: Configuring the jsPsych development environment. You can also read the plugin development documentation and look at the plugin/extension folders in the main jsPsych repository /packages directory for more examples.

JavaScript template