I try to install JSPM with these commands
link
but I have an error trying to try it with the command
npm install jspm -g and I get an error Please update to minimatch 3.0.2 or higher but I check the version of the minimatch and it's 3...
I have designed a Web with Angular 6 and a back-end with Express and NodeJS.
I have the idea of a dashboard to monitor the number of visits, how many queries to the API perform, events click on the front ...
I'm lost and I'm not sure where...
I have 2 models that I want to relate to be able to make queries in mongoose.
Users Model
import mongoose from 'mongoose'
const Schema = mongoose.Schema
let csvuaSchema = new Schema({
codigo: { type: 'String' },
georeferencia: { type:...
I have a function to which I send some parameters, and depending on those parameters makes a query in a BD or not.
The issue is that I need that if the query is made in the database the application waits for the query to finish to continue w...
I'm trying to do a query with Node and MariaDb , but I'm getting this error:
GET / - - ms - -
(node: 3244) UnhandledPromiseRejectionWarning: Error: pool is closed
at Object.module.exports.createError (/Users/dmn/Desktop/apirestI...
I'm trying to export a variable from my script (Server.js) to another script (articleHandler.js) using the following code line in the server script
module.exports = myVariable;
Which has not given me any success, since when ex...
I need to do that when I enter a dni in a input and I give the boton to accept, that number, go to another input that is in another page. I have tried using localstorage but I have not been successful, I have also ent...
I want to upload an application with backend in nodejs and frontend in react without creating 2 projects in heroku.
The directories of my application are like this:
My Application
app - "This folder contains the frontend created with...