Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Angular Generator VSCode Plugin similar to one from Angular Documentation [closed]

In the Angular documentation there is a screenshot referencing an Angular Generator in the context menu in Stackblitz. I was hoping to find something similar for VSCode.

After few google searches all I can come up with is an Angular Snippets plugin. Does anyone know how to get the Angular Generator option in the context menu?

https://angular.io/start#input

enter image description here

I am very aware that the cli is probably the preferable method of scaffolding app code, but I was curious if anyone knew how to get this extension because I could see it being useful.

Thanks!

like image 917
Damian C Avatar asked Nov 15 '19 17:11

Damian C


People also ask

Which plugin in VS Code helps to analyze your Angular code and warn you of potential errors?

Path Intellisense In order to avoid this problem, we have Path Intellisense extension in VS Code.

What is workspaceFolder in VS Code?

${workspaceFolder} - the path of the folder opened in VS Code. ${workspaceFolderBasename} - the name of the folder opened in VS Code without any slashes (/) ${file} - the current opened file.

Can we use VS Code for Angular?

Angular is a popular web development platform developed and maintained by Google. Angular uses TypeScript as it's main programming language. The Visual Studio Code editor supports TypeScript IntelliSense and code navigation out of the box, so you can do Angular development without installing any other extension.


1 Answers

Cyrille Tuzi introduced Angular Schematics extension can do exactly what you want

  • https://marketplace.visualstudio.com/items?itemName=cyrilletuzi.angular-schematics

Another extension that can offer similar feature is Angular Console

  • https://angularconsole.com/
like image 151
yurzui Avatar answered Sep 28 '22 02:09

yurzui