Skip to content

dreamyguy/gitinsight

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Gitinsight

๐Ÿ‘ Visualise your git log in new and exciting ways!

Node Version MIT Licence Data generated by Gitlogg

This project is a natural sequel to Gitlogg, a project that parses the git log of multiple repositories into JSON. The idea is to help organizations visualize their data in ways that help them understand what lies behind their codebase. Gitinsight is therefore an extension of Gitlogg, showcasing how useful the latter can be. ๐Ÿ”ฎ

Having said that...

๐Ÿ‘‰ Gitinsight is nothing without a gitlogg.json file!

This is the most important aspect of Gitinsight, and there's no way around it. All the logic around retrieving and rendering the data is intrinsically connected to the data structure present on gitlogg.json, which is the output of Gitlogg.

Getting started

0. Generate a gitlogg.json with Gitlogg.

...and place it under:

backend/server/json/gitlogg.json

๐Ÿ‘‰ For the curious, I've included a sample gitlogg.json so that one can try it without having generated their on JSON file.

At the time of this writing, I have yet to make a slight modification to the JSON generated by Gitlogg.

JSON Server expects the following format:

{
  "commits": [
    {"repository":"gitinsight","commit_nr":1, ...},
    {"repository":"gitinsight","commit_nr":2, ...},
  ]
}

While Gitlogg currently outputs (because of the no longer used Gitlogg API):

[
  {"repository":"gitinsight","commit_nr":1, ...},
  {"repository":"gitinsight","commit_nr":2, ...},
]

Until I have made that change to Gitlogg output, add these to gitlogg.json:

  • { "commits": to the beginning.
  • } to the end.

I'll remove this notice once that's no longer necessary.

1. Use the correct node version!

For better compatibility tracking, this project requires a minimal version of node. The version below is specified under package.json > engines > node on the package.json file and on .nvmrc file.

Use nvm to set the version. Install nvm if you don't already have it (install instructions available on their Github page).

nvm install v14.12.0

If you already have that version installed:

nvm use v14.12.0

The npm version gets automatically set when setting the expected node version through nvm.

2. Don't skip point 1

3. Install dependencies

Given that you are at the project's root, run:

npm run setup

That will install all necessary dependencies for both frontend and backend.

Running it

Gitinsight requires different apps running simultaneously. You'll be running 3 separate terminal windows:

1. JSON Server

Navigate to the backend/ folder and run:

npm run server:json

That will start the JSON Server on http://localhost:3000. The endpoint we'll be using will be at http://localhost:3000/commits.

2. GraphQL Server

Navigate to the backend/ folder and run:

npm run server:graphql

That will start the GraphQL Server on http://localhost:4000/graphql.

3. React Application

Navigate to the frontend/ folder and run:

npm run start

That will start the React Application on http://localhost:7777.

All these tasks have their own watch, that's triggered upon relevant file changes.

All available scripts are defined on the script part of package.json.

Development

1. Install plugins for eslint and prettier on your IDE (VS Code, Atom, Sublime, etc)

To ensure all developers are on the "same page" when it comes to code formatting, we reinforce certain rules. It's therefore important that plugins for eslint and prettier are installed on your IDE of choice.

These are the plugins I use on VS Code:

  • Prettier: esbenp.prettier-vscode
  • ESLint: dbaeumer.vscode-eslint

2. Unit testing

Navigate to the frontend/ folder and run:

npm run test

That will start the test suite (Jest), which will test utilities.

Utilities are pure functions that lift the complexity out of the files in which they are used. They require specific input, through pre-defined parameters, and provide specific output - whilst failing gracefully.

Good to know

This project relies on used to rely on Gitlogg API to render data, but on version v3.0.0 I've moved from MongoDB to JSON Server combined with GraphQL on the backend and GraphQL combined with Apollo Client on the frontend.

Accessing data locally (as originally done until version v1.0.3) would hit a wall as browsers only cache a limited amount of data. It was also important to outsource the massaging of the data to a dedicated service, as too many operations had to be made to show even the simplest output. Now these operations are done at the GraphQL level, which in turn are cached by the Apollo Client. JSON Server simply serves the gitlogg.json output, which is generated by Gitlogg.

The move to JSON Server was done for the sake of simplicity. For serving ridiculously big data one might be better off running MongoDB, but be warned that data size will bring your machine to its knees, and even though one can use Gitlogg API (a RESTful API based on ExpressJS and MongoDB), further optimization might be required. I managed to run a 2.5GB dataset.

License

Free to use AS IS as long as you stick to the MIT license.

Release History

  • 2020-12-30 v3.0.0 - View Changes

    • Another total overhaul, for science! โœจ ๐ŸŽ‰
    • Better separation of concerns (backend & frontend)
    • Introduction of GraphQL
    • Introduction of Apollo Client
    • Modernization of React implementation
    • All styling by Tailwind
    • All new dashboard looks!
    • ESLint + Prettier
    • So. Much. More.
  • 2018-04-08 v2.0.0 - View Changes

    • Total overhaul! โœจ ๐ŸŽ‰
    • Introduction of React
    • Use of an API as data source (through gitlogg-api) instead of accessing local data, which was costly and not scalable.
    • Unit testing
    • Travis CI
  • 2016-06-02 v1.0.3 - View Changes

    • Significant changes in every aspect, laying the ground for the React stack
  • 2015-11-30 v1.0.2 - View Changes

    • The first visualisation, based on local data
  • 2015-11-30 v1.0.1

    • Bare minimal Gulp setup, no functionality yet

About

Gitinsight was put together by Wallace Sidhrรฉe. ๐Ÿ‘จโ€๐Ÿ’ป๐Ÿ‡ณ๐Ÿ‡ด

About

๐Ÿ“Š ๐Ÿ‘ ๐Ÿง˜ Visualise your git log in new and exciting ways!

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages