I have access to a backend project and would like to know how to run this project. It uses loopback and reading documentation of loopback , in the statement 4 says:
Start the web server.
What command should I use...
I have the following method:
//USER_POST
router.post('/user', (req,res,next) =>{
var obj = {name:req.body.des_name,
email:req.body.des_email,
endereco:req.body.des_endereco,
c...
I have a problem reading an external Json but I can not identify it, I checked json and it appears correct.
This would be Json
link
I checked and it's correct, and before it worked and suddenly stopped
SyntaxError: Unexpected end of JS...
Good afternoon,
I have a problem with the POST return in express, I wanted to make a user registry using the following code:
router.post('/user', (req,res,next) =>{
var obj = {name:req.body.des_name,
email:req.body.des...
I have an application that creates mp4 video files 24/7, to do cleaning these files I need to delete all unmodified files in the last 30 days for example.
How to do this in Node Js? I already looked for references and did not find.
I have a cruel doubt on nodeJs / Express, I'm pretty new to the language but what I need is to pass the id on a route so that it executes and returns a query.
I want to do in fragmented files, so I have a Routes file (with all routes) an API...
I'm developing an application for chat rooms on Android using Firebase. The current structure is as follows (being Siege, Beauty etc rooms):
Sofar,userdataisbeingstoredwithFirebasedefault,com.google.firebase.auth.FirebaseUser;,butnowIneedtos...
I'm using express-validator in my api to validate the received data, I'm creating a custom validation to check if the user's email is already registered in the system, but I can not fire a throw new Error('Email em uso'); validator...
I have an application that the front end is VueJS / Quasar and the server is hapiJS. I'm working on the login part and would like to know how to redirect the page after receiving confirmation from the server that the login information is correct...