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
2
votes
1 answer

how to deploy mean.js to production?

I have built out a yeoman generator - mean.js app I have set up an aws ec2 linux instance, I have installed nginx as server, I have set up node as proxy server I have set up ports I have use grunt to build out my dist folder which includes…
amyloula
  • 1,556
  • 2
  • 17
  • 26
2
votes
1 answer

Yo meanjs generator - different code style

I am wondering why do I get different code generated from the rest of the mean app. What I mean exactly is this - when I run yo meanjs:angular-config I get a file that looks like this: (function() { 'use strict'; // My Module module config …
Aksiom
  • 1,565
  • 4
  • 25
  • 39
2
votes
2 answers

How to call one function from another function in express.js?

exports.usersignup= function(req, res) { console.log('user signed up working') } exports.addcustomer= function(req, res) { console.log('customer added') } I have two function which is exports.usersignup and exports.addcustomer .when i call…
user5503464
2
votes
3 answers

MEAN stack, cannot find module 'request'

I'm new to mean stack world, I installed mongoDB and nodejs node -v => v4.4.3 npm -v => 2.15.1 mongo -version => MongoDB shell version: 3.2.6 then followed MEAN installation guide to install it. after many faults I can run gult and have a…
rramiii
  • 1,156
  • 6
  • 15
  • 29
2
votes
1 answer

How to bind Mongoose model with angularjs Checkbox

I am trying to modify the sample application provided by meanjs The sample application has a angularsjs view which looks as follows
Rengas
  • 593
  • 1
  • 6
  • 25
2
votes
0 answers

Mongo errors when mongoose is updated from 3.8.8 to 4.x

I have a MEAN stack project. I'm using node v5.9.1 with "mongoose": "~3.8.8" MongoDB shell version: 3.0.10 on Ubuntu 15.10 I need to use mongoose-encryption which says it needs mongoose 4.x. Whenever i upgrade mongoose from 3.8 to 4.x, the server…
Dushyant Bangal
  • 6,048
  • 8
  • 48
  • 80
2
votes
1 answer

IONIC not receiving Socket data from server

I am using ionic framework for my android app and MEANJS on my server. I am using Web Sockets to get realtime data. While the server side web application updates automatically every time a CRUD happens in the android application, the android app…
Rohit Vinay
  • 665
  • 7
  • 38
2
votes
2 answers

MEANjs Passport callbacks not working (404)

I'm building a web app with MEANjs and I'm having some trouble with the Oauth callbacks for Facebook, Twitter, and Google+ (lnkedin works fine). Basically everything works, but the callback gives me 'Page Not Found' Error:…
theSiberman
  • 441
  • 4
  • 14
2
votes
1 answer

Ionic Socket setup not working

I am using MEAN.JS(NODEJS) for my server side and client for my web portal, where i have socket setup for realtime updates and its works perfectly, when i use the same controller in my ionic framework based android application it spits out this…
Rohit Vinay
  • 665
  • 7
  • 38
2
votes
1 answer

Configuring socket.io in node api

i'm having collections as shown below, Categories cat_id cat_name 11 abc 12 pqr 13 xyz Posts post_id posttitle cat_id 01 myposttitle1 12 02 myposttitle2 11 03 …
2
votes
1 answer

Using Socket.io Namespace in MEAN.js 4.2

I'm building an application with MEAN.js 4.2, and am trying to use Socket.io to have the server emit certain messages that the UI will respond to in real time. For example, when the server posts a Note to the user's Notebook, the Notebook will…
Foswick
  • 149
  • 1
  • 3
  • 12
2
votes
1 answer

Getting error while running Yeoman generator

I was following mean.js's tutorial which is at http://meanjs.org/generator.html, and while running the command yo meanjs I've got the following error: Error: Error: Command failed: C:\Windows\system32\cmd.exe /s /c "git --version" 'git' n?o ? is…
Kyle
  • 1,568
  • 2
  • 20
  • 46
2
votes
0 answers

Handling facebook crawler in mean-seo when html5 mode is on

I have a meanjs application and I have implemented mean-seo to handle the crawlers. I plan to deploy the app in HTML5 mode. The documentation for mean-seo says that I should put this meta tag to be able to run in html5 mode
aayush shrestha
  • 1,858
  • 2
  • 17
  • 33
2
votes
1 answer

Mean.JS and adding external dependencies

I am attempting to add the external dependency ui.codemirror to my Mean.JS 0.4.2 application. My understanding from here and here of the steps is as follows: bower install --save angular-ui-codemirror add dependency on ui.codemirror module to…
Don Subert
  • 2,636
  • 4
  • 27
  • 37
2
votes
0 answers

Audio streaming using rtmp protocol in videogular

I am using videogular player for playing audio . test.push({ src: $sce.trustAsResourceUrl("myserver/mypath/to/song.mp3"), type: "audio/mp3" }); This is working fine. But i need to stream rtmp protocol url instead of…
vikash5472
  • 200
  • 2
  • 16