Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Introduction to Angular - DevFest Ludhiana 2023

Introduction to Angular - DevFest Ludhiana 2023

This presentation is about basic Introduction to Angular. It was presented by Simar Preet Singh, Organiser, GDG Jalandhar at DevFest Ludhiana 2023. The content of this presentations revolves around What is Angular? How is it different from Angularjs? Why to use Angular? & How can one get started wit Angular?

Simar Preet Singh

July 22, 2023
Tweet

More Decks by Simar Preet Singh

Other Decks in Programming

Transcript

  1. Intro to Angular What? Why? How? Ludhiana Simar Preet Singh

    Sr. Software Developer, Cybertron Technologies
  2. ~/: whoami_ 1. MEAN Stack Developer with more than 4

    years of experience. 2. Working as Senior Software Developer at Cybertron Technologies. 3. Worked with several international clients. 4. Also developed Mobile Apps with Ionic, Capacitor and Firebase. 5. Love to contribute to Dev Community.
  3. GUI Development of: 1. Website 2. Web Apps 3. Mobile

    Apps Using technologies like: 1. HTML 2. CSS 3. JavaScript
  4. Angular is an application design framework and development platform for

    creating efficient and sophisticated single-page apps.
  5. What is Angular? 1. A component-based framework for building scalable

    web applications. 2. A collection of well-integrated libraries that cover a wide variety of features, including routing, forms management, client-server communication, and more. 3. A suite of developer tools to help you develop, build, test, and update your code.
  6. What is Angular? 1. A component-based framework for building scalable

    web applications. 2. A collection of well-integrated libraries that cover a wide variety of features, including routing, forms management, client-server communication, and more. 3. A suite of developer tools to help you develop, build, test, and update your code.
  7. Angularjs VS Angular Angular.js: 1. First version of framework, created

    by Google. 2. Came out in 2010. 3. Uses JavaScript. 4. Offered two-way data binding. 5. Opinionated - for well-defined structure. Angular: 1. Announced in 2014, released in 2016. 2. Complete rewrite of AngularJs from scratch. 3. Uses TypeScript. 4. Named Angular to avoid confusions in community. 5. Still opinionated - for-well defined structure
  8. Need to add server side rendering for better SEO. But

    it is also in-built, just need to enable it.
  9. Install the Angular CLI npm install -g @angular/cli ng new

    my-angular-project cd my-angular-project ng serve –open
  10. Q/A