We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
https://angular.io
Application = Components + Services | Components = View + Class + MetaData
Modules => Root Angular Module (components) + Feature Angular Modules (components)
Supports ES 5. Scripts written in ES 2015 (ES 6) or Typescript should be transpiled. ES = ECMA Script (European Computer Manufacturer's Association)
Why not Javascript
// exporting module export class Product { } -> transpiles to -> function Product() { } // importing it for use import { Product } from './product'