Angular 7!
In this post we will give you information about Angular 7!. Hear we will give you detail about Angular 7!And how to use it also give you demo for it if it is necessary.
After Angular 6, Angular 7 beta is here. The Angular Team released Angular 7 beta.1 which brings many bug fixes and features.
Angular 7 Features
Let’s see the new features of Angular 7:
DoBootstrap
Angular 7 added a new life-cycle hook (ngDoBootstrap) and interface (DoBootstrap). For example:
classAppModuleimplementsDoBootstrap{ngDoBootstrap(appRef:ApplicationRef){appRef.bootstrap(AppComponent);}}It’s used for bootstrapping modules that need to bootstrap a component.
The Angular Compatibility Compiler (ngcc)
Just like the name suggests, this compiler will be used to transform the node_modules compiled with the ngc to node_modules which are compatible with the new Ivy renderer.
Better Error Handling
Also Angular 7 has an improved error handling for @Output if property is not initialized.
Hope this code and post will helped you for implement Angular 7!. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs
How to revoke 'git add' before 'git commit' ?
In this post we will give you information about How to revoke 'git add' before 'git commit' ?. Hear we will give you detail about How to revoke 'git add' before 'git commit' ?And how to use it also give you demo for it if it is necessary.
Sometimes you need to undo your git file before you git comment command. Because you made a some misteck or wrong code and you did git add using "git add ." command then you think how to undo your code before git commit command. But you can do that using git reset command, if you need to undo all file Or you may need to undo just one then you can do using git reset command, you can see bellow command.
Example:
// For Spesific filegit reset
// For all files
git reset
Hope this code and post will helped you for implement How to revoke 'git add' before 'git commit' ?. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs
