Posts by Joao Benthin • 86 points
8 posts
-
0
votes3
answers252
viewsA: Dependencies Nodejs
The Archive package.json keeps all dependency data, such as name and version, if someone deletes a module from node_modules as you said yourself, it will be installed, but if someone deletes the…
-
0
votes2
answers194
viewsA: How to position Modal in the center of the screen?
Add the class .modal-dialog-centered inside the div with class .modal-dialog You can also remove these questions by accessing the bootstrap documentation clicking here…
twitter-bootstrapanswered Joao Benthin 86 -
1
votes2
answers375
viewsA: Open javascript in handlebars
To be able to add static files to your application you will need a function of Express calling for static First load your static file folder Example: app.use(express.static('app/public')) Then in…
-
1
votes1
answer48
viewsA: Problems with Nodejs on Linux
The problem is occurring due to syntax error (incorrectly typed code) The PI of Math.PI is written in capital letters Stay that way const area = Math.PI * Math.pow(raio, 2)…
-
2
votes3
answers793
viewsA: How to delete only records from a field of my table in SQL
table = Name of your table column = Column you want to clean UPDATE tabela SET coluna = NULL In your case it would look like this UPDATE produto SET dtsaneamento = NULL…
-
1
votes1
answer45
viewsA: Doubt Command Require
When you are going to make a require of some module in Node.js, you do not pass where it is but the name of the module, in your case the json-parser Example var Parser = require('json-parser');…
-
1
votes2
answers112
viewsA: Create an "inventory" in php
$itens = array('ameixa' => 2, 'abacate' => 3, 'mamão' => 1, 'maçã' => 3); echo '<table style="align:center;" border="1">'; // Como não está explicito a posição de cada item do…
phpanswered Joao Benthin 86 -
1
votes1
answer74
viewsA: npm Review does not work locally or in hosting
Try to use forever start server.js According to the website of the package, missed the word start at your command, try to test and see if it is right Website of the Forever Package…