How to use harlan-generator in Yeoman?

0

I'm thinking of creating a webapp using harlan and I ended up discovering that it has a yo-generator called generator-harlan. From what I understand it's like the generator-angular pro Yeoman but I can not install the generator-harlan by npm and I do not know which commands to use to generate my webapp. Can anyone help?

    
asked by anonymous 16.11.2015 / 15:02

1 answer

0

Surely the project README.md generator-harlan lacks this information, however it is very simple. Just have Yeoman installed, make sure you also have the latest stable version of NPM and NodeJS on your computer.

$ mkdir new-project;
$ cd new-project
$ sudo npm install -g yo
$ npm install generator-harlan
$ yo harlan # Gera seu projeto.

     _-----_
    |       |    .--------------------------.
    |--(o)--|    |   Welcome to the Harlan  |
   '---------´   |        generator!        |
    ( _´U'_ )    '--------------------------'
    /___A___\    
     |  ~  |     
   __'.___.'__   
 ´   '  |° ´ Y ' 

? Your package name: (new) 
    
16.11.2015 / 17:32