elihugarret / front-end-coding-test

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Front-end Test

Made this test project with Next.js for server-side rendered React applications.

Installing

git clone https://github.com/elihugarret/front-end-coding-test.git
cd front-end-coding-test
npm install
npm run build
npm start

Open your web broser in localhost:3000

ES6+ Features

Arrow Functions

Used in almost everywhere, like defining components and for mapping through an array, mainly beacause the expressiveness of this new syntax.

Template Literals

Used to write styles in my components with JSX and for string interpolation to pass data in API queries.

Classes

One of the most important feature for writing down React components, used it mainly in the rendering process of the index and commits pages. Gives you more intuitive Object Oriented and the benefits of inheritance.

Promises

Mostly used in this project in the server part with the Express framework.

About


Languages

Language:JavaScript 100.0%