Skip to content

Latest commit

 

History

History
57 lines (42 loc) · 1.83 KB

README.md

File metadata and controls

57 lines (42 loc) · 1.83 KB

Live Pad

Codacy Badge

Feature list

  • Editor with create and join session option
  • Separate interviewer and candidate session
  • Disable code highlight on candidate
  • Cursor tooltip along the username
  • Option to enable code highlight for the candidate on a session create
  • Validate session creation
  • Introduce read-only sections inside the editor
  • Code highlight only for interviewer
  • Private note session for interviewer
  • Option to accept and reject incoming requests
  • Option to end the interview and make it read only
  • Option to playback completed interview
  • Option to download the interview into a local JSON file
  • Option to load a local file and playback interview

Installation

  1. Clone/download repo
  2. yarn install (or npm install for npm)

Usage

Development

yarn run start-dev

  • Build app continuously (HMR enabled)
  • App served @ http://localhost:8080

Production

yarn run start-prod

  • Build app once (HMR disabled) to /dist/
  • App served @ http://localhost:3000

All commands

Command Description
yarn run start-dev Build app continuously (HMR enabled) and serve @ http://localhost:8080
yarn run start-prod Build app once (HMR disabled) to /dist/ and serve @ http://localhost:3000
yarn run build Build app to /dist/
yarn run test Run tests
yarn run lint Run linter
yarn run lint --fix Run linter and fix issues
yarn run start (alias of yarn run start-dev)

Note: replace yarn with npm in package.json if you use npm.