Questions tagged [yo]

a command-line interface tool for running Yeoman generators

yo is a command-line interface tool (written by Simon Boudrias and licensed under BSD) for use in running Yeoman generators. The GitHub page can be found at https://github.com/yeoman/yo.

Yeoman is an open source client-side development stack, consisting of tools and frameworks intended to help developers quickly build high quality web applications. Yeoman runs as a command-line interface written in Node.js which combines several functions into one place, such as generating a starter template, managing dependencies, running unit tests, providing a local development server, and optimizing production code for deployment.

230 questions
0
votes
0 answers

yeoman angular generator finishes but empty directory

So I installed all deps and and have been trying to use yo angular, and everything seems to complete alright, except that the resulting directory is empty after everything finishes. Thoughts as to why? leonsas at leonsas in ~/testdataops> yo angular…
leonsas
  • 4,718
  • 6
  • 43
  • 70
0
votes
1 answer

jhipster-entity-audit threw exception when i try enable audit

jhipster-entity-audit threw exception when i try enable audit, exception: Reading the JHipster project configuration for your module events.js:141 throw er; // Unhandled 'error' event ^ TypeError: jhipsterFunc.copyTemplate is not a…
sanitar4eg
  • 153
  • 1
  • 1
  • 13
0
votes
0 answers

change my task runner from gulp to grunt

I am using yeoman to scaffold my angular js application, and wasn't interested in picking a specific task runner (gulp, or grunt), hence I selected the default which was (gulp), after discussing with team we decided to use grunt. so is it possible…
Karim Tawfik
  • 1,286
  • 1
  • 11
  • 21
0
votes
1 answer

Error when running: yo keystone (Windows 10 x64, node 5.3.0, npm 3.3.12 )

After installing generator-keystone: $npm install -g generator-keystone And yeoman generator: $npm install -g yo I'm running generator: $yo keystone. After answering the questions and completion of generator's work i receive the following…
mr_rozgo
  • 11
  • 3
0
votes
1 answer

generator-backbone not install properly

error : +-- UNMET PEER DEPENDENCY generator-backbone-mocha@>=0.0.2 `-- UNMET PEER DEPENDENCY generator-mocha@>=0.1.3 npm WARN generator-backbone@0.4.0 requires a peer of generator-mocha@>=0.1.3 but none was installed. npm WARN…
SudTheNerd
  • 196
  • 1
  • 1
  • 7
0
votes
1 answer

Is Yeoman grunt bower and yo dependent on Git

Is is possible to create a web app using yeoman (yo, bower, grunt) WITHOUT having git version control or is this mandatory?
Scott
  • 937
  • 1
  • 8
  • 8
0
votes
1 answer

yo meanjs app template installation error

am a newbie in meanjs app development so i decided to follow the tutorial at http://www.bradoncode.com/tutorials/mean-stack-tutorial-part-1-setup/ I have installed the necessary tools to get started using the commands below sudo npm install -g…
code_titan
  • 23
  • 4
0
votes
1 answer

Uninstalled npm packages but they are still installed

I want to start a fresh installation of the yoemen but it seems that I can't get rid of it in the first place when I run npm remove -g yo bower grunt-cli it removes normally but when I type yo I get the normal generator menu: How do I get rid of…
Johhan Santana
  • 2,336
  • 5
  • 33
  • 61
0
votes
1 answer

Yeoman angularjs-cordova app - what is next?

I created the app according to this article: https://www.npmjs.com/package/generator-angularjs-cordova with yeoman and angularjs-cordova generator. At creation app time, I was prompted to choose plugins that I want to use in my app. I added next…
Michael Vaysman
  • 277
  • 3
  • 16
0
votes
2 answers

Error: Command failed: C:\Windows\system32\cmd.exe /s /c “rm ./mean/package.json”

How to fix this error. When i use command “yo meanjs”, but not show as in video. It’s: undefined You’re using the official MEAN.JS generator. What mean,js version would you like to generate? i choose 0.4.0 In which filder would you like the project…
Trung Cr
  • 1
  • 1
  • 2
0
votes
1 answer

Start with fresh copy of node, npm and cordova

I had a makeshift setup on Lubuntu that 'functioned' with sudo npm install. I used Ionic Framework generator to create projects and they functioned as well as the builds and deployment. I upgraded to 15.04 and ever since had problems finding a…
petrivoges
  • 79
  • 1
  • 10
0
votes
4 answers

yo meanjs:vertical-module runs the application creator

I have been using mean.js version 0.3 with no problems up untill now. Today I decided to checkout mean.js 0.4 so I ran npm install -g generator-meanjs to install the new version of the generator, and then ran yo meanjs and I went through the steps…
Ronny vdb
  • 2,324
  • 5
  • 32
  • 74
0
votes
1 answer

Yoeman angular/meanjs generator C compilation error - Ubuntu

Trying to use Yoeman on node 4.0.0 on Ubuntu 14.0.4, everything vanilla just installed. Both the mean.js generator and the angular generator fail on the same error during compiling C source. Here is the relevant part of the console output: npm WARN…
amahfouz
  • 2,328
  • 2
  • 16
  • 21
0
votes
1 answer

function not returning value to client from server

I have a function to access mongodb using mongoose, the database call works and appears in the console but it doesn't return that array as it should. Can't figure out why. exports.getPrices = function() { return Price.find().exec(function (err,…
Kirby
  • 3
  • 2
0
votes
1 answer

Yeoman install location always set to desktop

I seem to be having trouble with yeoman scaffold installer. I can cd to fresh directories which would be for the project files but for some reason using the yo starter it always installs build directories to desktop. was working before, not sure…