/Words-App

Primary LanguageTypeScript

Words-App

It's an Applications helps the students practice categorizing a set of words according to their part of speech.

Prerequisites

How to run the server side in development mode

  1. clone the repository
  2. cd into the directory of server-side cd server-side
  3. Install the dependencies: npm install
  4. Run the server: npm run dev

How to run the server side in production mode

  1. clone the repository
  2. cd into the directory of server-side cd server-side
  3. Install the dependencies: npm install
  4. Buid the project: npm run build
  5. Run the server: npm start

How to run the client side in development mode

  1. clone the repository
  2. cd into the directory of client-side cd client-side
  3. Install the dependencies: npm install
  4. Run the app: npm start

How to run the tests in client side

  1. clone the repository
  2. cd into the directory of client-side cd client-side
  3. Install the dependencies: npm install
  4. Run the tests: npm test