Skip to content
Snippets Groups Projects
libraries.md 1.48 KiB
Newer Older
  • Learn to ignore specific revisions
  • Rémi PAILHAREY's avatar
    Rémi PAILHAREY committed
    # Libraries
    
    For this project, we use the libraries below:
    
    ## React
    
    Library to create user interfaces.
    Design simple views for each state in your application, and React will efficiently update and render just the right components when your data changes.
    
    
    Hugo NOUTS's avatar
    Hugo NOUTS committed
    Build encapsulated components that manage their own state, then compose them to make complex UI.
    
    Rémi PAILHAREY's avatar
    Rémi PAILHAREY committed
    
    Since component logic is written in JavaScript instead of templates, you can easily pass rich data through your app and keep state out of the DOM
    
    ## Axios
    
    HTTP client library
    
    It allows to send HTTP request and manage the responses.
    
    ## Lodash
    
    javascript utility library
    
    
    Hugo NOUTS's avatar
    Hugo NOUTS committed
    Lodash modular method are great for:
    
    Rémi PAILHAREY's avatar
    Rémi PAILHAREY committed
    
    - Iterating arrays, objects, & strings
    - Manipulating & testing values
    - Creating composite functions
    
    ## Jest
    
    Testing library
    
    
    Hugo NOUTS's avatar
    Hugo NOUTS committed
    It allows to evaluate functionalities of an app to ensure that the product is defect-free in order to produce the quality product.
    
    Hugo NOUTS's avatar
    Hugo NOUTS committed
    CSS Preprocessor
    
    Rémi PAILHAREY's avatar
    Rémi PAILHAREY committed
    
    It allows us to easily manage large CSS files and split across different files.
    It allows us to create variables, nested rules, mixins, functions, and do mathematical calculations.
    
    ## Gorilla/Mux
    
    Package for Go that implements a request router and dispatcher for matching incoming requests to their respective handler.
    
    
    Bastien DUMONT's avatar
    Bastien DUMONT committed
    It allows us to easily create and manage routes/APIs
    
    Hugo NOUTS's avatar
    Hugo NOUTS committed
    Package for Go that converts annotations to Swagger Documentation 2.0.
    
    Rémi PAILHAREY's avatar
    Rémi PAILHAREY committed
    
    ## Gorm
    
    ORM for Go
    
    It allows us to easily communicate between the backend and a relational database