Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.27 KB

README.md

File metadata and controls

34 lines (26 loc) · 1.27 KB

This project is a sample project that allows a user to enter some arbitrary sequence of characters and will return a histogram of counts for each n-gram, displayed as a bar chart or table of counts

WordStats App Architecture and Frameworks

In this project directory, the app was divided into two

  • API/Server which was hosted on AWS lambda and deployed using API Gateway. API was written using Node.js and code can be found on project directory at: API/index.js
  • Client-side/Frontend written in javascript using React.js framework and react-chartjs-2 for data visualization on a bar chart

Getting Started

To have a feel of the app, you can view demo at View Demo. App features include:

  • allow user inputs, update input and delete input
  • Converts text into ngram and return no of counts
  • Displays ngram and count on a tabular and chart format

Run Locally

  1. Clone/Download app from github
  2. locate project directory on console '/Frontend/app'
  3. npm install
  4. npm start
  5. View app on http://localhost:3000/

Test

No automated Test