https://github.com/systangotechnologies/crashlyzer
Crash viewer web application for displaying the crashes reported by rn-crash-reporter components from React Native mobile applications.
https://github.com/systangotechnologies/crashlyzer
crash-reports gulp hapi hapijs mysql react-native rn-crash-viewer webpack
Last synced: about 21 hours ago
JSON representation
Crash viewer web application for displaying the crashes reported by rn-crash-reporter components from React Native mobile applications.
- Host: GitHub
- URL: https://github.com/systangotechnologies/crashlyzer
- Owner: SystangoTechnologies
- License: mit
- Created: 2017-02-23T07:21:20.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-02T14:25:28.000Z (over 6 years ago)
- Last Synced: 2025-04-23T04:04:36.114Z (about 21 hours ago)
- Topics: crash-reports, gulp, hapi, hapijs, mysql, react-native, rn-crash-viewer, webpack
- Language: JavaScript
- Size: 853 KB
- Stars: 59
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: License
Awesome Lists containing this project
README
## Crashlyzer
Dashboard tool to analyze the reported crashes from the [React Native Crash Reporter](https://github.com/SystangoTechnologies/rn-crash-reporter) library.## Technology
- **Hapi** - Server side framework
- **Handlebar** - HTML templating engine
- **MySql** - Mysql database
- **SASS** - CSS preprocessor
- **Gulp** - Javascript tasks automation
- **WebPack** - Asset pipeline
- **Docker** - Containerisation platform## Application Structure
```
|
| -- app
| |-- controllers // Controllers are organised by module names
| | |-- // Each controller defines config and handler for that route
| |
| |-- helpers // Helper functions used across application
| |-- models // All mongoose models are defined here
| |-- routes // All app routes are defined here
| | |-- // Route module is a hapi plugin and can be toggled from config/manifest.js
| |
| `-- templates // All server-rendered handlebar templates, partials and helpers
| |-- // Templates are organised by module names
|
|-- assets // Contains all static resources
| |-- fonts // Fonts used in application
| |-- images // Images used in application
| |-- misc // Misc resources used in application
| |-- scripts // Client javscripts files which are then packed by webpack
| |-- styles // All SASS stylesheets
| | |-- // Styles are organised by module names
|
|-- config // Contains all app configurations
| |-- assets.js // Assets configuration file
| |-- config.js // Application configuration file which stores all passwords etc. (gitignore)
| |-- manifest.js // App manifest file listing all plugins and load order
| |-- meta.js // App metadata file
|
| -- db
| |-- data // Mysql Data directory
| | |-- // Mysql Data files
| |-- init // Mysql Initialisation Scripts
| | |-- init.sql // Table definitions
| | |-- insert.sql // Initial data
|
|-- lib // Core application lib/plugins
|-- tasks // Contains all gulp tasks
|
|-- gulpfile.js // Gulp entry file
|-- index.js // Application starting point
|-- package.js // Package configuration file
|-- server.js // Main server file
|-- Dockerfile // Dockerfile containing the build information
|-- docker-compose.yml // Docker-Compose file containing the web and db services information```
## Code Style
We're using semi-colons and comma-last. No rhyme or reason; and some of the hapi [code convention guidelines](http://hapijs.com/styleguide). All client-side js code is also in commonJS pattern packs using webpack. Check out `.editorconfig`, `.jsbeautifyrc`, `.eslintrc` for additional code conventions used.
## Dockerised Startup
Please execute the following command at the root of the project to boot the database and web-app containers
```
Docker-Compose up
```## Entity Relationship Diagram
## Contributors
[Arpit Khandelwal](https://www.linkedin.com/in/arpitkhandelwal1984/)
[Anurag Vikram Singh](https://www.linkedin.com/in/anuragvikramsingh/)