Posts by Bigous • 181 points
5 posts
-
0
votes1
answer420
viewsA: I cannot display my html pages with Node.js
Good afternoon Diego, In doing so: // catch 404 and forward to error handler app.use(function(req, res, next) { var err = new Error('Not Found'); err.status = 404; next(err); }); In express, you’re…
-
1
votes1
answer543
viewsA: Interface GET and POST method with Angular + Node.js
Hello Luiz, good afternoon. In your Javascript code, in ifs, you must use the == operator or the === operator to check if the constant is equal to the variable (as is string I suggest == because it…
-
10
votes2
answers11548
viewsA: How to remove unused packages in the node_modules folder with the NPM command?
In the projects where there is the archive package.json, besides the Uninstall already mentioned in the previous answer, you can use the command: node prune Simply edit the file package.json so that…
-
0
votes5
answers3789
viewsA: NPM does not continue package installation
This is Gabriel, here are some items for you to check: GIT is installed? Can you clone into some external repository (git clone https://github.com/Bigous/ng2-highcharts.git for example)? Since you…
-
4
votes1
answer9629
viewsA: This error tells: "Return makes Pointer from integer without a cast"
Let’s get the nomenclature straight first. It is not giving error, it is a "Warning", warning of non-conformity that normally the compiler can pass, but can cause problems... in your case will not…