I am trying to install mongoDB as a macOS service but I am running to some errors
I first put in the terminal
brew tap mongodb
Nothing really happens.
But, when I run:
brew install mongodb-community@5.0
I receive:
Warning: No available formula…
TypeError: res.status is not a function
at auth (D:\PROJECT\Web Application\Learning React\MERN STACK\middleware\auth.js:17:9).
I am getting this error. The code is given below.
const config = require("config");
const jwt =…
I'm trying to work on a MERN full stack app where the frontend sends an api call to "/createDeckOfCards" to my nodejs backend. The goal is to click on a button to create a new deck of cards, then return the list of created cards.
The parameter…
Goal:
I want to deploy a MERN stack application for people to use it.
Problems faced with directory structure:
On the web I found some people telling that the React app should live inside the views folder which is inside my backend. Others say that…
I checked the JetBrains site and saw that PyCharm Pro have JavaScript support.
Can I develop JavaScript only project in PyCharm Pro? Like a MERN stack project just with PyCharm. Or do I need to get WebStorm as well?
TL:DR I'd like to combine the power of BigQuery with my MERN-stack application. Is it better to (a) use nodejs-biquery to write a Node/Express API directly with BigQuery, or (b) create a daily job that writes my (entire) BigQuery DB over to MongoDB,…
I've always used heroku to deploy my MERN apps. For the mongo db I use MongoDB Atlas, but in my job they want to migrate all the projects to DigitalOcean. I have several questions regarding this:
Can I have mongoDB + nodejs backend + react app on a…
An app I'm creating uses the MERN stack (MySql, Express, React, Node). The frontend and backend end are each stored in 2 separate Githubs repos and are hosted on 2 separate Heroku instances. Both the frontend and backend deploy to Heroku…
[Solved] Check my answers
I'm learning MERN Stack via a youtube playlist https://www.youtube.com/watch?v=TO6akRGXhx8. I'm stuck when i reached the 28:04 where he forgot to connect his component with 'react-redux'. I followed how he resolve it but…
I'm following a Udemy MERN stack course and I've got stuck in middle of a problem. There is no point in completing it before solving this problem, and in my searches I've found similar problems but a future point of the development. I just added the…
So I'm setting up a 5 day weather forecast web app for practice interacting with APIs using the MERN stack. I'm using Axios.js to send and respond to requests; to make sure I have my back-end working, I started building that out first before…
I am having trouble having my React application to work optimally on mobile Safari. My app will PUT, POST, PATCH, and DELETE normally on desktop but won't do so on my iPhone. I've tried adding "cursor:pointer" and onTouchStart to my React component…
Basically everything works fine in Chrome and Firefox but on IE after clicking Link element only URL is changing, not the view. I know about Update Blocking issue in react-router, but I think it's not the case - as I sad, it failure only on IE. …
I have a MERN app that allows logged in user to create posts, with text and images. When the post is created the component re-renders and the post is adde automatically. The images and text from the post show up right but the username and user's…