Skip to content

Latest commit

 

History

History
62 lines (43 loc) · 881 Bytes

README.md

File metadata and controls

62 lines (43 loc) · 881 Bytes

Lecture 8 task

Prerequisites:

Windows users only: Download and install Git Bash

Install nvm:

Install nodejs:

nvm install 8.11.1

Install yarn:

npm install -g yarn

Installing:

Open terminal:

cd /path/to/lecture_08
yarn install

Run the server

yarn start

Open http://localhost:3000

Run the tests

yarn test

Run eslint:

yarn lint

Workflow:

  • Fork the project
  • Implement required functionality (src/app.js)
  • Run lint
  • Run the tests

ONLY if all tests passed and the code has no eslint errors

Open pull request from your repository to FED-PRO-04-18/lecture_08