Skip to content

Hugo Pich

Learn web development

Hugo Pich
Search
  • ‘Ultimate’ JavaScript articles
  • Blog
  • About
  • EnglishEnglish
    • EnglishEnglish
    • FrançaisFrançais
  • Search

Next ‘ultimate’ article

November 27, 2019September 11, 2019 by hugopich

The full reference on forEach in JavaScript arrives in the coming days. Stay tuned!

Categories 'Ultimate' JavaScript articlesLeave a comment

Install a NPM package and run it from the command line – locally or globally

November 27, 2019July 14, 2019 by hugopich

Local installation of a NPM package limits the impact of a package to a project folder. Unlike a global install that exposes potentially the package on the entire machine. The location of executables is not the same in both cases. Requirements : … Read more

Categories TipsLeave a comment

Yarn : manage package versions

November 27, 2019March 19, 2019 by hugopich

Here are some useful commands to know what are the versions and install them. Example with JHipster. Voir la version d’un package installé globalement : yarn global list generator-jhipster Voir les versions d’un package disponibles au téléchargement : yarn info … Read more

Categories UncategorizedLeave a comment

Deploy a JHipster application on Heroku

November 27, 2019January 2, 2019 by hugopich

JHipster offers support to deploy on Heroku, which is impressive … so simple! Prerequisites: A Heroku account (a free plan exists) Heroku CLI (= Heroku Toolbelt) Build the application in prod profile: mvnw -Pprod package with Maven gradlew -Pprod bootWar … Read more

Categories StartingLeave a comment

Speed ​​up the Android emulator, with Intel HAXM

November 27, 2019October 19, 2018 by hugopich

The Android emulator can be slow, which is why Intel has developed a processor virtualization solution, to speed up its execution. It may be installed with Android Studio, however in case of problems it can also be downloaded from the … Read more

Categories TipsLeave a comment

JHipster – update method called several times, cache does not seem to refresh

July 10, 2018July 10, 2018 by hugopich

Strange errors can appear when updating a JHipster entity: old values are written in database, and new values are ignored. It can be a very simple edge effect to correct. We can first believe in a Hibernate cache problem that … Read more

Categories TipsLeave a comment

Launch and test an Ionic app: the 4 methods

October 11, 2018July 5, 2018 by hugopich

To launch an Ionic application under development, and test the changes, several methods are possible. The simplest uses the browser, another an emulator, and two others the real mobile. All methods allow access to a back-end, such as Spring Boot, … Read more

Categories StartingLeave a comment

Run browser-sync from the command line – local or global

November 27, 2019June 28, 2018 by hugopich

BrowserSync allows to automatically reload in the browser web resources: HTML file, CSS, JavaScript … Here’s how to run browser-sync quickly, on the command line, in the case of a local or global installation. Requirements : Install Node.js and npm … Read more

Categories TipsLeave a comment

Install Node.js, npm, and set the proxy

June 19, 2018June 5, 2018 by hugopich

Node.js is a powerful JavaScript runtime. Its package ecosystem called npm, included, is very often used to install development frameworks that use JavaScript (Angular, Ionic, JHipster …) To install Node.js : Download on the official Node.js website the latest LTS … Read more

Categories StartingLeave a comment
'Ultimate' JavaScript articles   |   Blog   |   Contact
© 2023 Hugo Pich