Giter Site home page Giter Site logo

github-analyser's Introduction

Github-analyser

https://github.com/soumyamishra89/github-analyser

A github repository analyser which takes in owner and repo name, and provides info about the repository. It works on public repositories only

Prerequisites

  • NodeJS
  • npm (to install the packages for local run)
  • Docker (to run the built application)
  • github oauth app

How to run

1. Docker (http://localhost:8080)

docker run -e CLIENTID= -e CLIENTSECRET= -p 8080:8080 ssmishra89/github-analyser

2. Docker compose

cd /github-analyser
docker-compose up github-analyser

client id and secret is provided in the docker-compose.yml as a secret file

The default port is 8080. To change the port, it can be passed as environment variable like CLIENTID and CLIENTSECRET. e.g.PORT=8000

3. Local setup:

 unzip github-analyser.zip 
 cd github-analyser
 npm install

 cd backend
 CLIENTID= CLIENTSECRET= npm start
 npm test (to run the tests)
 
 cd frontend
 npm start
 npm test (to run the tests)
 

A github oauth app is to be created from which clientID and client secret will be required to run the application.

Package structure

backend

  • src/index.js: entry file containing app server setup
  • src/database: folder containing database setup
  • src/handlers: contains the route handlers for the different end points
  • src/models: contains the data models with schema validation for users and github repos
  • src/router: sets up two router /auth and /github for authorisation and github apis.
  • src/routes: contains the mapping of routes to handler using the routers.
  • src/services: contains two services. database service for accessing the models and github service for fetching repository info using github rest api.
  • src/utils: contains util functions
  • src/_mock_: contains the mock data for tests
  • src/_tests_: contains the tests

frontend

  • src/pages: contains a single page containing the table and login button
  • src/components: contains the react components used in the pages.
  • src/redux: contains all the redux related stuff, actions, reducer and store
  • src/services: contains module for remote api calls
  • src/types: contains typescript types for data
  • src/_mock_: contains the mock data for tests
  • src/_tests_: contains the tests

Design Decisions

  • Frontend is written in typescript and backend in javascript. The create-react-app provides simple setup for typescript. Backend is written in javascript to avoid additional manual setup process.
  • babel is used to be able to write with ES6 features (import instead of require).
  • LokiJS is used as an in-memory database as it provided simple setup (simply install and run). But schm package was used to validate the data schema before persisting. This enables replacing LokiJS with MongoDb or other json based database.
  • Two routers were created to separate auth and github routes. Auth routes provide end point for pinging the server e.g. login status,user login. Github routes provide end point for requesting repository info and summary snapshot from DB.
  • The client id and secret for github oauth app is passed as environment variable to keep it a secret as setting it up locally is simple and can also be used on cloud infrastructure.
  • passportjs is used for authentication to github app since it provides an unified way of authenticating multiple oauth apps. It can be easily extended to use other oauth login.
  • cookies are used to identify user session. This way users need not login every time visiting to the same app. Also, additional step of storing the access token on client and sending it wih each request is also not required. The backend server would store the user info in DB and each request can be mapped to the specific user from the cookie session id.
  • datamodels are created with class wherease other services are simply used as modules. This was done to allow datamodels to inherit from a standard abstract model that provides uniform access methods to the database, whereas services are created as standalone modules.

Limitation

  • The user can login with github account but as of now, logout option is not provided.
  • The app does not differentiate if the provided repository is invalid or private. All kinds of error are shown with similar message.
  • Uses multiple calls to fetch github repository info using githup rest api. Can be optimised.
  • The backend and frontend are served from same domain to avoid CORS issue. Additional setup would be required to make it work separately as standalone backend and frontend applications.
  • In-memory database needs to be replaced with a persistent one so that data is not lost.

github-analyser's People

Contributors

soumyamishra89 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.