Skip to content

NetworkExplorer/frontend

Repository files navigation

NetworkExplorer Logo

NetworkExplorer - frontend

The frontend for NetworkExplorer built with React and TypeScript

Table of Contents

Screenshots

File List

the file list

Search Box

the search box

Requirements

In order to develop and build the frontend you only need Node.

  • Node.js v14+

Building the project

Building the project is as easy as executing npm run build. The output will be in the build folder. Complete installation combined with the backend can be found here

Explanation

An explanation for school.

Technical aspects

  • we use React with TypeScript
  • for state management, we use React Redux and Redux Thunk (for async requests)
  • for routing, we use react-router
  • we use a Singleton for our Endpoints class
  • we use SCSS modules for scoping css classes/IDs
  • our state-management store is almost completely type-safe

Structure

src folder

contains the components, pages, store files for the website

basically any folder that has a index.ts, comprises multiple sub-components etc. for easier imports, turning multiple import statements into one (ex: @components as an import "path")

when adding files, be sure to add them to their corresponding index.ts for easier imports

  • components the components used in the app; can be imported with @components, index.ts

  • pages the different pages of the app; can be imported with @pages, index.ts

  • global folder for global scss files (because we use CSS modules)

  • lib contains interfaces and otheruseful helper function; can be imported with @lib, index.ts

  • models contains the main models (interfaces) for the app; can be imported with @models, index.ts

  • store contains the store types, reducers and actions; the index.ts is used for creating necessary top-level types and condensing the reducers, actions etc.; every sub-folder is its own reducer with types and actions

public folder

the basic index.html and favicon

config folder

mostly webpack configuration from the ejected react-scripts, but also with slight modifications for usage of TypeScript paths (import classes etc. with things like @models)

scripts folder

scripts for running, building etc. from the ejected react-scripts

About

The Frontend for NetworkExplorer built with React

Resources

License

Stars

Watchers

Forks

Packages

No packages published