/bowling_challenge_v2

Attempt two at the bowling challenge.

Primary LanguageJavaScript

// for test coverage (Coveralls) npm install coveralls --save-dev

// testing with Jasmine(TDD for Javascript) Download and unzip the .zip file from website, then open specrunner.html file in browser.

// to run javascript server side (Node.js) https://nodejs.org/en/ website installer

// a web application framework built on node.js to assist creating a web app using javascript and running it server side. npm install --save express

// git ignore file to not commit the node modules to github.

// followed this walktrough to help with creating the API. https://www.youtube.com/watch?v=0SiC1DClaFg&t=48s

// to run the server!!! (command to run the server) node ./src/index.js

// express (api helper) npm install express --save

// jQuery (javascript library to reduce code writing) jquery-3.3.1.min.js src requirement in index.html

// bootstrap (for styling html) npm install bootstrap

// ESLint for checking style (run as below) ./node_modules/.bin/eslint src/public/resources/js/ScoreCard.js