Questions tagged [mean-stack]

The MEAN stack is a methodology that employs MongoDB, Express, Angular / AngularJS, and Node.js to provide a complete end-to-end system. One of the primary motivations for such a stack is that it is pure JavaScript at all ends. Two different implementations are available: mean.io and mean.js

MEAN (an initialism for Mongo, Express, Angular, Node) stack can be implemented just as LAMP stack is implemented, with or without a specific framework or architecture as the four technologies can be implemented in completely different ways.

A ready-to-go implementation is available at meanjs.org.

Related tags:

3884 questions
1
vote
1 answer

uiSelect Unknown provider

Hi im trying to implent uiSelect https://github.com/angular-ui/ui-select But when i add module JS angular.module('projects').controller('ProjectsCreateController', ['$scope', 'Projects', 'Notify', 'CustomersToId', 'Users', '$http', '$q',…
Stweet
  • 683
  • 3
  • 11
  • 26
1
vote
2 answers

How to config, run, monitor and manage multiple of different node service?

I'm developing a large scale system (MEAN Stack + ElasticSearch + RabbitMQ), There are many different nodejs projects and queues working together. I a few questions. When I want run and test the whole system, I have to open a lot of terminal…
1
vote
3 answers

Connect MongoDB to my MEAN program

I want to write a MEAN stack program that reads and adds data into a mongodb database. My program works now without the mongodb part(works with array instead of the db). can you help me connect it to the mongo. I'm absolutely lost my way while…
user3100708
  • 148
  • 3
  • 19
1
vote
0 answers

unable to display tweets inside angular using mean stack

fyi: please do not update the english for this question, because if you do I dont have enough points to approve it and I'll be stuck there for ever. I promise we'll improve the english once I solve the issue. using angular ui.router, providing…
JP.
  • 1,035
  • 2
  • 17
  • 39
1
vote
2 answers

remove a mongoose entry with express

I am new to the whole mean stack. I am about to create a CRUD application. I already have the easy ones, C and R but now I want to go for D. Unfortunately, when I try to delete an entry I get a 500 error. My routes are getting called but after that…
ZedsWhatSheSaid
  • 467
  • 2
  • 9
  • 23
1
vote
0 answers

get a value from $promise returned by Item.query()

Hello I am trying to query my Mongoose DB for items using $scope.inventory = Item.query(); which works. Problem is I need to separate them based on a values on the front end of my app. console.log($scope.inventory); returns [$promise: Promise,…
ReganPerkins
  • 1,645
  • 3
  • 17
  • 36
1
vote
1 answer

Basic scope issue (javascript and node)

Hi I have a very simple (i think) js question that I seem to be stuck on. I am trying to create the route below. What gets console.logged from within the bEtsy function is what I would like to have display on the page. however 'body' is not…
ReganPerkins
  • 1,645
  • 3
  • 17
  • 36
1
vote
2 answers

Batch and delay API calls with nodejs/async

I am working on a social network graph, where I want to build a "six degrees of separation" tree based on adjacency lists that I get from an API. For each person, the API will return an array of friends in the form [id1, id2, id3...] which is…
Charles Bandes
  • 795
  • 8
  • 21
1
vote
1 answer

MEAN.js dynamic meta data

I have generated a meanjs crud module with: yo meanjs:crud-module modulename. How do i go about changing the meta data values for view.modulename.client.html since their generated on the server side (layout.server.view.html)? I can't seem to find…
Henrik Harju
  • 95
  • 1
  • 10
1
vote
3 answers

mean stack authentication - best practice

i'm trying to figure out a best practice for building an authentication system, the simplest one (based on user_name and password). i searched for best practices and found a few projects, although most of them are pretty old and many things are…
omri_saadon
  • 10,193
  • 7
  • 33
  • 58
1
vote
1 answer

Using slugs in URL in CRUD in MEANJS

I needed to use slugs in the URL instead of the article ID so I changed a couple of things in the articles example given by meanjs but I have a problem, I can list, view and edit, but I can't create new ones. I'm not familiar with the MEAN stack so…
codiaf
  • 569
  • 2
  • 18
  • 47
1
vote
0 answers

Not being able to POST in MEAN single page app

I have only just started trying out NodeJS. Having a little experience with Angular, I thought of trying out a MEAN stack to-do app tutorial from scotch. I understand what is happening and how angular, node and my view are supposed to be working…
sushcha
  • 55
  • 7
1
vote
1 answer

Best way to organize JSON data for MongoDB

I come from a relational database background and am still trying to get my head around how to store data that would have been relational in a NoSQL database (or JSON object). My question is, how would I store data about villages? Each village has a…
Jragon
  • 45
  • 9
1
vote
1 answer

MEAN stack hosting on OpenShift

I'm trying to set up a MEAN stack per the instructions at http://learn.mean.io/#mean-hosting-mean-openshift. I'm new to OpenShift and MEAN (and pretty new to Git), so I'm confused about steps 5 and 6. When it says "Clone that repo to your local…
bruggles
  • 13
  • 3
1
vote
1 answer

Load Testing of MEAN applications

I am currently writing an application with the MEAN stack and just deployed the first version to a server. The application consists of a static HTML file (and CSS and some images additionally) and a whole bunch of JavaScript files. A lot of the JS…
WeSt
  • 2,628
  • 5
  • 22
  • 37