Posts by Pedro Guilherme • 86 points
4 posts
-
0
votes1
answer73
viewsQ: How to use open cv with nodejs in production environment
I have an application developed in nodejs in which I use the opencv4nodejs which allows you to use the opencv library in nodejs. The application is ready on local server, but I have no idea how to…
-
6
votes1
answer2392
viewsQ: What does the MIT license mean?
Copyright (C) [year] [copyright holders] Permission is hereby granted, free of Charge, to any person obtaining a copy of this software and Associated Documentation files (the "Software"), to Deal in…
googleasked Pedro Guilherme 86 -
0
votes2
answers15933
viewsA: How to request GET/POST with Node.JS?
I think the easiest way to request is with Request https://www.npmjs.com/package/request request('http://www.google.com', function (error, response, body) { console.log('error:', error); // Print…
-
1
votes1
answer36
viewsA: How to make a scraping changing page
From what I understand you want to make several requests and go composing the arrays with the elements that you get from the page. You need to call another function and create a loop of it to make…