All Questions
5 questions
1
vote
2
answers
465
views
QR Code Scanning with location check
I would like to make an order-system with QR-Codes which is online.
How I imagine it to work:
A customer visits a restaurant. There is a QR-Code on his table which takes him to a public webpage where ...
0
votes
1
answer
315
views
Confusion over Node as a "script" vs Node as a "server"
As I was beginning to tool around a bit with node, I was told that I needed to undergo a little bit of a paradigm shift since I was coming from a PHP background. I would ask questions like, "I have my ...
2
votes
1
answer
1k
views
Authenticate Joomla user from an external app based on Node.js, Javascript and MongoDB
I have an iOS App which currently pulls in all the data from the MongoDB using a Node.js server. Currently my API / my node server handles all the data manipulation the iOS app/Swift only displays the ...
1
vote
1
answer
2k
views
Preserving Pre-formatted Multi-Line Strings in Node.js Scripts
There is a lot I don't like about PHP, but one thing I love is multi-line strings:
$query = <<<EOT
select
field1
,field2
,field3
from tableName
where
field1 = 123
EOT;
What'...
3
votes
2
answers
505
views
Do some interpreted languages only load the scripts once?
The benefit of a compiled application was that all the libraries and classes are loaded one time and sit waiting for input right?
I come from a background working with PHP and the resources/classes ...