Skip to content

quborg/json-gen

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JSON Generator with User Interface CircleCI Status

Run the project

Just open up public/index.html on your preferred web browser.

To rebuild or development

Prerequisites

  • Environment setup
  • Install Dependencies
    • Run command: yarn (equivalent to npm install)

Rebuild a new fresh version

This command will recompile public/bundle.js from latest source code src/:

yarn run prod

Debug mode

This mode use Webpack-Dev-Server and React-Hot-Loader:

yarn run dev

Source file structure

Essentials files

├── src/
│   ├── assets/
│   │   ├── fixtures.js  -   -   -   -   | Basic data shape.
│   │   └── styles.css
│   ├── containers/
│   │   └── index.js -   -   -   -   -   | Main React container, exported as JsonGenerator.
│   ├── provider.js  -   -   -   -   -   | Application Entry point.
    ..