Skip to content

casiez/FittsExperimentNodeJS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FittsExperimentNodeJS

Fitts' experiment task written in Node.js

Setup

  1. Run npm install
  2. Create in MySQL a database called FittsExperiment
  3. Create sql user fitts with password Paul2018 and provide him access to FittsExperiment
  4. Create a table results using the following command:
CREATE TABLE `results` (
 `id` int(11) NOT NULL AUTO_INCREMENT,
 `creationdate` timestamp NOT NULL DEFAULT current_timestamp(),
 `hash` varchar(50) DEFAULT NULL,
 `res` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
 PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=52 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT

Run the server

Run the server using the command node server.js

About

Fitts' experiment task written in Node.js

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages