/helloworld-react

A boilerplate web application built with React and Redux.

Primary LanguageJavaScript

Hello World Webapp (React/Redux)

pipeline status coverage report dependencies

A boilerplate for web applications built with React and Redux.

Technology

Requirements

Usage

# install dependencies
npm install

# run app in development on port 3000
npm run dev

# run tests
npm run test

# build for production
npm run build

# lint code
npm run lint

# format code
npm run format

Debugging

From DevTools

// use logger
Logger.debug('Hello World!');

// check if there is an authenticated session
AuthService.isAuthenticated();

// get state from Redux store
$store.getState().MyModule.myField;

// dispatch action from Redux store
$store.dispatch($state.MyModule.$myAction(/* args */));

References