Today I Learned

TIL, 2021-12-25, Component vs Module

Ultimate Vim TypeScript Setup

Reference

  • vim-graphql
  • coc.nvim - Conquer of Completion.Plug 'neoclide/coc.nvim' , { 'branch' : 'release' }

What’s the difference between an Angular component and module

Reference

  • Module is a big container containing one or many small containers called Component, Service, and Pipe.
    • HTML template, code, service (reusable code shared by components so that rewriting of code is not required).
    • Pipe - takes in data as input and transforms it to the desired output.
  • Component is the template (view) + a class containing some logic for the view + metadata (to tell Angular from what data it needs to display the template).
  • Modules do not control any HTML. Modules declare which components can be used by components belonging to other modules, which classes will be injected by their DI, and which component gets bootstrapped.

This project is maintained by daryllxd