Follow the guidelines here: https://expressjs.com/en/starter/generator.html
- npx express-generator my-app
- cd my-app
- npm install
- npm start
Follow the guidelines here: https://expressjs.com/en/starter/generator.html
Disclaimer: I am writing this for my understanding and reference. Also provided the links on each topic what I referred to. Please refer them for complete details.
What are the differences between Angular and AngularJS?
https://stackify.com/angular-vs-angularjs-differences-between-angular-and-angularjs/
https://gorrion.io/blog/angularjs-vs-angular
"Angular JS, based on JavaScript, uses terms of scope and controllers while Angular uses a hierarchy of components. Angular is component-based while AngularJS uses directives."
What is the official site for Angular?
What do you need to know to work an Angular app?
HTML, CSS, JavaScript, TypeScript, knowledge of JavaScript classes, modules
Basic architecture concepts of an Angular app
How do you set up an Angular app to begin with?
https://angular.io/guide/setup-local
> npm i -g @angular/cli
> ng new angular-app
> cd angular-app
> ng serve --open (app opens up at http://localhost:4200/)
Explain the process of application launch/bootstrapping?
An Angular application launches by bootstrapping the root module which creates the components listed in the bootstrap array and inserts each one into the browser DOM.
https://angular.io/guide/bootstrapping
What are the key components in Angular?
Best tutorial to learn Angular?
https://angular.io/tutorial (Tour of Heroes app)
Initially I went through the fundamentals of Web Components here: https://www.webcomponents.org/introduction
Then I read about window.customElements.define here: https://developer.mozilla.org/en-US/docs/Web/API/Window/customElements
Then I went through the examples and the details given here: https://www.robinwieruch.de/web-components-tutorial.
Also, to make your hands dirty:
This is the best (short and sweet): https://www.youtube.com/watch?v=mTNdTcwK3MM
try Stencil and build a stop-watch (a library to build your web component project) : https://medium.com/@ahsan.ayaz/building-web-components-with-stencil-a3717787954a
Handling data with Web Components: https://itnext.io/handling-data-with-web-components-9e7e4a452e6e
Well, I ended up with some understanding after going through these articles. Happy coding 😊
Additional read: Thorough coverage on Stencil props, events, state: https://blog.logrocket.com/building-reusable-web-components-with-stencil-js/
Data binding example with NO stencil: https://medium.com/swlh/https-medium-com-drmoerkerke-data-binding-for-web-components-in-just-a-few-lines-of-code-33f0a46943b3