Questions tagged [meanjs]

MEAN.JS is a full-stack JavaScript solution for building web applications using MongoDB, Express, AngularJS, and Node.js.

MEAN.JS is a full-stack JavaScript open-source solution, which provides a solid starting point for MongoDB, Node.js, Express, and AngularJS based applications. The idea is to solve the common issues with connecting those frameworks, build a robust framework to support daily development needs, and help developers use better practices while working with popular JavaScript components.


Documentation :

Related Tags for the used applications:

  • The database itself
  • The interface from express to the database.
  • web application network
  • other tag for the same web application network
  • the web frontend in the version 1.x.x
  • the javascript framework to develop and publish.
877 questions
0
votes
1 answer

mean.js Unexpected request: GET images

I am a beginner with the test meanjs on the server side. Introduction I have created a service that it calls the factory that performs HTTP. So I would like to understand why this error: Unexpected request: GET images No more request…
Zack NERO
  • 21
  • 4
0
votes
3 answers

MEANjs custom bootstrap theme

I'm a noob to MEANjs and to Bootstrap. I'm trying to add custom theme styles to the standard core.css that comes with MEANjs. You can see in my CSS that I've added the 'background:"blue" !important' attribute to the svg style. However, the…
ramsey0
  • 1,587
  • 1
  • 12
  • 10
0
votes
1 answer

Save two referenced documents simultaneously

I've got an stock application where I want to set some details about the stock and then insert all the items of the stock. I want to insert the stock details and the items in two different collection so then I can filter the items. I'm using the…
Facu Ferrari
  • 145
  • 1
  • 2
  • 17
0
votes
1 answer

Cant't get function in controller to trigg from angularJs directive

I'm trying to run a function in my controller after the inplace edit to update my underlying data, but it doesn't trigger... can't understand why. How can I check if I'm in the right scope? I'm using Meanjs As a test I'm trying to trigger the…
0
votes
1 answer

Node.js: Socket.io+MEAN.js - can't emit right after connection

I'm quite new to the Node.js and I currently have a problem to make mean.js + socket.io work properly. In a nutschel, the client does not receive the events emitted in the on('connection',...) handler, but it receives other events. To demonstrate my…
Nihau
  • 474
  • 3
  • 20
0
votes
1 answer

routing in mean.js (how to include middlware?)

I'm trying to include a middleware (passport-http-bearer) in MEAN.js, however it uses a different routing syntax than Express 4. Express API sytnax is: app.get('/', function(req, res){ res.send('hello world'); }); In MEAN.js routes are defined…
orszaczky
  • 13,301
  • 8
  • 47
  • 54
0
votes
3 answers

MeanJS - integrate Angular in index.html file

I'm coming from a LAMP background, and as a learning project I downloaded MEAN.JS so I can dive into the MEAN stack. I got the whole thing running, but I feel like I'm missing something... I followed all of the steps at…
aikorei
  • 570
  • 1
  • 7
  • 23
0
votes
2 answers

How can I populate friends of current user in meanjs?

I want to display friends of Authenticated user in angularjs page. // Find a list of Friends $scope.find = function() { $scope.friends = Authentication.user.friends; $scope.firstFriendName = Authentication.user.friends; …
Emre Alparslan
  • 1,022
  • 1
  • 18
  • 30
0
votes
1 answer

Deploy meanjs into cloud9 IDE

I'm starting to develop with the stack meanjs. I'm using Cloud9 as a cloud IDE (I need its team functionalities). I tried previously to install mean in my local machine successfully. My problem arise when I try to install it in my cloud9 workspace.…
acostela
  • 2,597
  • 3
  • 33
  • 50
0
votes
0 answers

ngLocal nomod error

I'm currently building a meanjs (Mongo, Express, Angular, Node) application. When I run my app with grunt locally, it works great. However, when I deploy to digital ocean or heroku I get the following error: Uncaught Object This is obviously not a…
Zargoon
  • 333
  • 1
  • 3
  • 15
0
votes
1 answer

Meanjs built in app, how to update USER array from articles module

I'm using the Articles and Users implementation into Meanjs built-in app. List of articles (View) with the button for every item:
0
votes
1 answer

creating a ydn-db service for angularjs

I'm working on a project using Meanjs and ydn-db for indexeddb support. So I'm trying to make a service in angular, but I just can't figure a way to include the js file properly. I've tried installing the lib in the following methods: bower install…
yokodev
  • 1,266
  • 2
  • 14
  • 28
0
votes
1 answer

Installing mongoose friends plugin with MeanJS

Thanks for your support! Every time I run a Yeoman CRUD scaffold for mean.js, it breaks my app. The page turns completely white. So I'm not exactly sure which files to add where for CRUD functionality. I'd like the ability for users to "friend" each…
user3373281
  • 155
  • 1
  • 2
  • 11
0
votes
1 answer

When using generator-meanjs, why does naming a module "copywars" give me the error "Unknown provider: $stateProvider"?

I'm brand new to MEAN so I thought I'd use the yeoman generators to make a game called CopyWars. Here are the steps to recreate: Install and run mongodb and install npm sudo npm install -g generator-meanjs mkdir copywars-meanjs cd copywars-meanjs yo…
intrepion
  • 38,099
  • 4
  • 24
  • 21
-1
votes
1 answer

How to pass parameters from angular4 component to express API

I am working for mean stack application. I am able to connect express api and angular component, but i want to pass parameters to the api service. Please find the code below for clearer idea, Component Code constructor(private _dataService:…