Skip to content

andreypopp/react-app-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-app-demo

DEPRECATION WARNING: This is not maintained anymore, please use react-quickstart instead.

A minimal example of a single page app project which uses react-app. You can use this as a starting poing for your new project, just fork and change a few credentials in package.json.

Development process

This project has Makefile which assists you in common tasks, just type:

% make help

to see what's available:

Usage: make <action name>

Available actions:
  install     	install all dependencies
  develop     	start development server
  lint        	lint front-end code
  test        	run test suite
  build       	build all js and css bundles
  build-report	report build artifacts size
  clean       	remove build artifacts
  help        	show help

The first step is probably make install to install all needed deps followed by make develop to start working on app.

You would also probaby like to remove git repository and start a new one:

% rm -r .git
% git init

Application structure

├── Makefile          - project actions and build instructions
├── LICENSE           - MIT License (change if you want to)
├── README.md         - this file
├── package.json      - npm package definition
├── .gitignore        - git ignore
└── ui                - your application
    ├── assets        - static assets are served from here
    ├── index.css     - entry point for CSS stylesheets
    └── index.jsx     - entry point for your application

About

*DEPRECATED* Demo project for react-app

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published