Questions tagged [angular-fullstack]

Related to Angular Full-Stack Generator project

Yeoman generator for creating MEAN stack applications, using MongoDB, Express, AngularJS, and Node - lets you quickly set up a project following best practices.

https://github.com/angular-fullstack/generator-angular-fullstack

357 questions
8
votes
1 answer

Yeoman Angular-Fullstack new route does not redirect

I'm using angular-fullstack generator to develop my project. When I try to create a new route using the command (I've installed uiRouter): yo angular-fullstack:route search All the files are created successfully. But whenever I try to open that…
nash
  • 523
  • 1
  • 5
  • 18
7
votes
4 answers

Angular Bootstrap Dropdown not working in Angular Fullstack

I have copied code directly form the Angular Bootstrap UI Plunkr I am using a blank Angular FullStack (Mean) template for building an application. When I use the code from the Angular Bootstrap uib-dropdown it ends up formatted incorrectly and does…
David Cruwys
  • 6,262
  • 12
  • 45
  • 91
6
votes
1 answer

Resolve using UI Router and pass to a component's controller

How do I resolve a variable with UI Router when I am using a component. This is the route: $stateProvider .state('route', { url: '/route', template: '', resolve: { user: (Auth) => { …
Mika
  • 5,807
  • 6
  • 38
  • 83
6
votes
1 answer

Debugging node js in Webstorm when running from gulp

I'm fairly new to this, but I really tried my best looking for up for answers. I used yeoman to generate an application. (used 'angular fullstack' - https://github.com/angular-fullstack/generator-angular-fullstack) It has a gulpfile.babel.js config…
Tal Gvili
  • 299
  • 1
  • 4
  • 15
6
votes
1 answer

How do I work with $scope and $watch with angular-fullstack generator syntax?

I am using the angular-fullstack generator to generate new routes for my application. The syntax is really unfamiliar and uses a class-like structure. How do I work with this to inject things like $scope and $watch? The main thing I want to do is…
jOshT
  • 1,525
  • 1
  • 11
  • 15
5
votes
2 answers

How to Prevent Webpack Error after npm Install?

I was working on a project, and everything was going good, until I did npm install. Then, Webpack throws the following error: new ForkCheckerPlugin(), ^ TypeError: ForkCheckerPlugin is not a constructor at makeWebpackConfig…
nash
  • 523
  • 1
  • 5
  • 18
5
votes
2 answers

What is the best way to install Angular on Rails 4?

I have populated api using Rails and now wish to mount a front-end framework like Angular on Rails. I've seen people using Gulp or Grunt to do this, but still not 100%. Would love to see how experts efficiently stack Angular and Rails together. Much…
Ji Lee
  • 53
  • 4
4
votes
4 answers

Angular 5 formgroup list controls or iterate them

I am using angular 5 with formgorup and wish to iterate the controls, in order to create a dynamic component based on a form, the forms fields are given by an external data service (database etc.) It is declares as follows check = new FormGroup({ …
thebeancounter
  • 4,261
  • 8
  • 61
  • 109
4
votes
1 answer

Inject ngMaterial using webpack, angular fullstack generator

I want to build a web application and I have started building this by using the angular fullstack generator. This generator uses webpack and this is the first time I am using webpack. I have been trying to add the ngMaterial dependency by installing…
Dorin
  • 2,167
  • 4
  • 20
  • 32
4
votes
3 answers

sequelize, Statement(where) in statement(where)

I'm trying for 2 hours to resolve a little problem which is not one. I'm on an generated yeoman Angular-fullstack App. I want to write this code with sequelize: SELECT * FROM demand WHERE city_id NOT IN ( SELECT city_id FROM demand WHERE…
Wandrille
  • 6,267
  • 3
  • 20
  • 43
4
votes
2 answers

403 when posting in postman using Yeoman's Angular-Fullstack

I am trying to populate a local db using MongoDB in my Yeoman Angular-fullstack application. I used the endpoint command: yo angular-fullstack:endpoint [options] and can get to the route, but it is an empty object. It will not allow me to…
4
votes
2 answers

What's the best way to access env variables on the back end when using angular-fullstack generator?

I'm using Yeoman's angular-fullstack generator. And I have updated my server/config/environment/local.env.js file: module.exports = { DOMAIN: 'http://localhost:9000', SESSION_SECRET: 'vfsite2-secret', SENDGRID : { API_KEY : 'my_api_key' …
4
votes
3 answers

How to prevent git commit from deleting files

I just did a git commit and it deleted a few files seemingly randomly from my node_modules folder. Has anyone had this issue? To be clear, my latest git commit deleted delete mode 100644…
rashadb
  • 2,515
  • 4
  • 32
  • 57
4
votes
1 answer

Angular-fullstack generator production app does not properly serve socket.io?

I am running into trouble between two angular-fullstack apps deployed on AWS via same setup and configuration. It seems that socket.io-client/socket.io.js isn't served properly on one of them despite having same settings. Seems like it's getting an…
PGT
  • 1,468
  • 20
  • 34
4
votes
2 answers

Choosing different environments on yo angular fullstack projects from grunt?

In the scaffold generated project using yo angular fullstack I normally launch the app with grunt using grunt (I am not an expert on it). Example grunt grunt serve and so on. As far as I know I have three different environments (Development,…
ackuser
  • 5,681
  • 5
  • 40
  • 48
1
2 3
23 24