danielcaldas / el-conversor

A number to word list converter as a Node backend and React/Redux fronted

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

el-conversor

Build Status

A number to word list converter as a Node backend and React/Redux fronted

Deployed in Heroku

Check it out https://el-conversor.herokuapp.com/ 😎

Project setup

.
β”œβ”€β”€ app // frontend react app
β”‚   β”œβ”€β”€ assets
β”‚   β”œβ”€β”€ common // shared code for fe app
β”‚   β”œβ”€β”€ components // app components
β”‚   β”œβ”€β”€ converter // converter the main container wired to the redux store
β”‚   └── dist // production static assets are served from here
β”œβ”€β”€ cypress // automatic e2e tests
β”œβ”€β”€ scripts // utils scripts
└── server // node.js backend
    β”œβ”€β”€ src
    β”‚   β”œβ”€β”€ dictionary // module responsible for matching results with dictionary words
    β”‚   └── t9-converter // module that encapsulates number2word algorithm
    └── test
        β”œβ”€β”€ dictionary
        └── t9-converter

Running ElConversor locally

npm install
npm run dev // starts local backend server and frontend webpackdev server with hot reload for frontend

To see others scripts just type npm run they are splitted into client and server tasks, the names are self descriptive.

About

A number to word list converter as a Node backend and React/Redux fronted

License:GNU General Public License v3.0


Languages

Language:JavaScript 84.2%Language:CSS 14.2%Language:HTML 1.6%