Posts by Odirlei Borgert • 76 points
4 posts
-
0
votes1
answer420
viewsA: Error when typing php Artisan migrate command in windows terminal
On the drive you need to enable which database drive is using, this needs to be enabled in your xampp. Composer Download and install Composer on your windows https://getcomposer.org/download/ Note:…
-
1
votes1
answer60
viewsA: Autoload models in Mongoose
Hello, I created a Boilerplate for projects in Node with express + mongodb, I use mongoos as ODM, the modules import them using express-load and you can take a look at it, I think you can take…
-
1
votes1
answer1485
viewsA: How important is . env in React?
The file . env is the file where the environment variables of your application are. Somewhere in your application it must be using the variable 'NODE_PATH' and so it didn’t work. In this file you…
-
1
votes1
answer29
viewsA: Json Merge with Javascript Array
I believe that in your case you should receive an array of objects, which would look like this... var arrDados = [{"mes": ["12","5","1"]}, {"mes": ["2","8","3"]}]; var meses = {1:'Jan', 12:'Dez',…