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
2 answers

How to filter ng-repeat value on clicking of checkbox field in angularjs?

Hi, all I want to filter ng-repeat value on clicking of check box field. My Plunker. On clicking of Role block checkbox it's should filter only the roles value of block elements. And On clicking of My role check box it's should filter only the…
R. Mani Selvam
  • 320
  • 8
  • 36
2
votes
0 answers

Yo generator for meanjs 0.5.0

I can see below for Yo Generator in meanjs documentation: The Yeoman Generator is currently not maintained. It is based on an older version of MEAN.JS (0.4.2). This content is retained here for historical purposes and for anyone still using the…
Abhishek
  • 176
  • 1
  • 12
2
votes
1 answer

Nodejs application not running by using docker compose

I'm dockerizing nodejs and mongoDB application but its not executing into browser. URL is http://0.0.0.0:3030/ Error in browser: This site can’t be reached The connection was reset. Try: Checking the connection Checking the proxy and the…
Muzammil Ahmed
  • 77
  • 1
  • 3
  • 14
2
votes
1 answer

UnknownError: Connection refused (Connection refused)

I'm running a grunt test within a MEAN JS stack app and found an issue that I can't work out its cause. Running webdriver-manager on its own, i.e. webdriver-manager start, works fine, but running via the grunt test task seems to fail. I also noticed…
dcpartners
  • 5,176
  • 13
  • 50
  • 73
2
votes
0 answers

Routing between Express and Angular in MEAN.JS

I ran into issues on calling a Express route from my Angular template route and Express -> Angular. This code shows my attempt into tackling this issue. // Server.js file, the main Node.js code var Outlook = require('Outlook'); // Bootstrap db…
staminna
  • 468
  • 1
  • 5
  • 26
2
votes
1 answer

my docker-compose is picking up files from another folder, not from where I'm running the command

Upon going inside the container, For some reason it reads the code from this location, I don't know how and from where is the code being loaded here: /home/mean But the needed ( real code ) contents are being uploaded here: /opt/ltg/ Here's my…
JP.
  • 1,035
  • 2
  • 17
  • 39
2
votes
0 answers

Use LetsEncrypt SSL Certs with Express (MEANJS) Production Mode

I'm using the Meanjs boilerplate. My LetsEncrypt certs works fine on dev mode and non node applications, but I'm can't make it work on prod mode. The following message appears when I start the application: + Error: Certificate file or key file is…
Daniel
  • 305
  • 4
  • 14
2
votes
2 answers

How to send and array in $http.delete

I want to delete the tag created using http post. here is the code that i have tried. $http({ method: 'DELETE', url: '/api/tags', data: [vm.tags.name] }).success(function(data) { console.log('Gets DELETED'); vm.tags.name =…
d8ta
  • 167
  • 2
  • 13
2
votes
1 answer

Heroku cannot find ./node_modules/.bin/forever in Procfile of Yeoman MEAN app

I've been trying to get a Yeoman generated MEAN.js app deployed to Heroku for the best part of a day without much luck. I've carefully gone through all the steps and am pretty sure I've done everything correctly according to documentation. After…
mikeym
  • 5,705
  • 8
  • 42
  • 62
2
votes
1 answer

Fonts glyphcons missing using yeoman generator

I'm using for the first time Yeoman, and I installed a generator called gulp-angular, where I have components like bootstrap-sass, but I'm having an issue, when I run gulp-serve it gives me an…
Pedro
  • 1,459
  • 6
  • 22
  • 40
2
votes
1 answer

Error to create meanjs project with yo Generator

I am beginner to means js ,I did the setup for meanjs from here. I have use the following commands to create meanjs project with some question answering. santosh@santosh:~/Documents/Projects$ yo meanjs Native thread-sleep not…
Santosh Shinde
  • 6,045
  • 7
  • 44
  • 68
2
votes
0 answers

AngularJs Link redirection issue in iPhone's safari browser

I am working on a webapp developed in MEAN.JS. When I detect that the app is running on iPhone, I want to redirect it on a native app to do my WebRTC communication (as WebRTC is not supported on any of the iPhone's browser). When I click on open,…
2
votes
1 answer

Why Password and Salt automatically in MEAN STACK?

Here I am trying to verify mobile number in user module. I have created token and I sent to user but whenever user is trying to verify using that particular token 'Password' and 'salt' automatically got changed. How to avoid this? Some one help me…
user5503464
2
votes
2 answers

How to fetch value from one input into another?

Hi all I want to fetch the input value from Buyer_name into Copied Buyer_name input field.i tried many ways but unable to find the solution if anyone knows the solution please help me....my plunk controller:- $('#supname').change(function()…
R. Mani Selvam
  • 320
  • 8
  • 36
2
votes
0 answers

Yeoman Meanjs generator unable to get local issuer certificate

The company I work for uses a Zscaler proxy and I am trying to get the meanjs yeoman generator to work on my Windows 10 machine. So far I have managed to get npm to work by setting the proxy, https-proxy and the registry as follows: npm config set…
Shane Haw
  • 723
  • 9
  • 22