08 décembre 2018

Angular

Voici quelques repères pour démarrer sous Angular.

Installation windows :
Node.js + npm install -g @angular/cli
IDE :
Visual Studio Code avec module Angular language service
Créer un nouveau projet :
ng new app-test
Générer un composant :
ng generate component mycomponent
Traduction :
ng xi18n
Rendu du site en live :
ng serve --open
Compilation pour mise en ligne :
ng build --prod

Maven tips

Here is the beginning of a progressive documentation of Maven.


Useful commands

>>mvn {{command}}
  • clean
  • compile
  • package
  • site

Reports

Reports are located reporting xml element in the xml project file (pom.xml) :

...

Here are few reports plugin :

org.apache.maven.plugins maven-javadoc-plugin org.apache.maven.plugins maven-checkstyle-plugin org.apache.maven.plugins maven-jxr-plugin org.apache.maven.plugins maven-pmd-plugin

How I Turned GitHub Copilot Into My Coding Sidekick (And Why It Feels Like Cheating)

  How I Turned GitHub Copilot Into My Coding Sidekick (And Why It Feels Like Cheating) Spoiler: It’s not cheating. It’s collaboration —with...